Skip to content

Commit

Permalink
Switch connections-list database to using TupleBox
Browse files Browse the repository at this point in the history
  * Use the internal database type, same as for the world state
  * Should be / could be a bit faster, but is also more consistent.
  * In the process found a bug in the tuple store with secondary indices
  • Loading branch information
rdaum committed Oct 31, 2023
1 parent c8604fa commit 9eb4fe5
Show file tree
Hide file tree
Showing 9 changed files with 234 additions and 510 deletions.
6 changes: 4 additions & 2 deletions crates/daemon/src/connections.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
use std::time::{Duration, SystemTime};

use uuid::Uuid;

use moor_kernel::tasks::sessions::SessionError;
use moor_values::var::objid::Objid;
use rpc_common::RpcRequestError;
use std::time::{Duration, Instant, SystemTime};
use uuid::Uuid;

pub const CONNECTION_TIMEOUT_DURATION: Duration = Duration::from_secs(30);

Expand Down
Loading

0 comments on commit 9eb4fe5

Please sign in to comment.