diff options
author | Florian Klink <flokli@flokli.de> | 2023-03-01T17·55+0100 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-03-10T10·58+0000 |
commit | a4f6c4181aa7f975b1c3aad8d3fb30021388e014 (patch) | |
tree | ee2f0a3911503ccb66f29d5b47dbdd763c02b026 /tvix/store/src/directoryservice/sled.rs | |
parent | 535e1b15ab457c9015baebf14bd7b50a38edadb4 (diff) |
feat(tvix/store): add new_temporary for all Sled services r/5934
This provides a service using /dev/shm, that's deleted once the reference is dropped. Refactor all tests to use these, which allows getting rid of most TempDir usage in the tests. The only place where we still use TempDir is in the importer tests, which work on a filesystem path. Change-Id: I08a950aa774bf9b46d9f5c92edf5efba36053242 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8193 Reviewed-by: raitobezarius <tvl@lahfa.xyz> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/store/src/directoryservice/sled.rs')
-rw-r--r-- | tvix/store/src/directoryservice/sled.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tvix/store/src/directoryservice/sled.rs b/tvix/store/src/directoryservice/sled.rs index caa78615d30a..064f86ceaa6e 100644 --- a/tvix/store/src/directoryservice/sled.rs +++ b/tvix/store/src/directoryservice/sled.rs @@ -19,6 +19,13 @@ impl SledDirectoryService { Ok(Self { db }) } + + pub fn new_temporary() -> Result<Self, sled::Error> { + let config = sled::Config::default().temporary(true); + let db = config.open()?; + + Ok(Self { db }) + } } impl DirectoryService for SledDirectoryService { |