This website requires JavaScript.
Explore
Help
Sign In
status-im
/
nim-codex
mirror of
https://github.com/status-im/nim-codex.git
Watch
2
Star
0
Fork
You've already forked nim-codex
0
Code
Issues
Projects
Releases
Wiki
Activity
e648c26340
nim-codex
/
tests
/
codex
/
teststores.nim
5 lines
91 B
Nim
Raw
Normal View
History
Unescape
Escape
feat: introduce LRU cache (#50) * feat: introduce LRU cache Replace `MemoryStore` with LRU caching mechanism. `lrucache` library was forked to https://github.com/status-im/lrucache.nim. Co-authored-by: Eric Mastro <eric.mastro@gmail.com> # Conflicts: # dagger/dagger.nim # dagger/stores.nim # dagger/stores/manager.nim # tests/dagger/blockexc/testengine.nim # tests/dagger/helpers/nodeutils.nim # tests/dagger/testnode.nim # tests/dagger/teststores.nim * feat: introduce --cache-size CLI option Allow for a value of `0` to disable the cache. # Conflicts: # dagger/dagger.nim * allow dynamic block size in cache allow block size to be variable/dynamic update lrucache to use updated lrucache dep Using removeLru proc, added tests * Refactor CacheStore init block Co-authored-by: Michael Bradley, Jr <michaelsbradleyjr@gmail.com>
2022-03-02 16:30:42 +00:00
import
.
/
stores
/
testcachestore
[node] add SQLiteStore backend Closes #138
2022-07-22 23:38:49 +00:00
import
.
/
stores
/
testfsstore
Fix unused import warnings
2021-11-15 11:32:48 +00:00
{.
warning
[
UnusedImport
]
:
off
.
}