aboutsummaryrefslogtreecommitdiff
path: root/TODO.md
diff options
context:
space:
mode:
Diffstat (limited to 'TODO.md')
-rw-r--r--TODO.md10
1 files changed, 1 insertions, 9 deletions
diff --git a/TODO.md b/TODO.md
index 72301cf..b35bff4 100644
--- a/TODO.md
+++ b/TODO.md
@@ -23,15 +23,7 @@ priority 1
- [ ] compress before storing
- [ ] uncompress before loading
- [ ] store compressed chunks into tracks of trackSize (1024o)
-- [ ] add chunk cache that would look like this:
- ```go
- type ChunkCache map[ChunkId][]byte // Do we really want to only keep the chunk content ?
-
- type Cache interface {
- Get(id ChunkId) Chunk
- Set(id ChunkId, Chunk)
- }
- ```
+- [x] add chunk cache... what was it for again ??
priority 2
----------