TODOs
This commit is contained in:
parent
fdc14cc66c
commit
6413123838
@ -10,6 +10,7 @@
|
||||
namespace blockstore {
|
||||
namespace caching {
|
||||
|
||||
//TODO Check that this blockstore allows parallel destructing of blocks (otherwise we won't encrypt blocks in parallel)
|
||||
class CachingBlockStore: public BlockStore {
|
||||
public:
|
||||
CachingBlockStore(std::unique_ptr<BlockStore> baseBlockStore);
|
||||
|
@ -9,6 +9,7 @@ namespace blockstore {
|
||||
namespace caching2 {
|
||||
|
||||
//TODO Rename this to CachingBlockStore and the other one to something else
|
||||
//TODO Check that this blockstore allows parallel destructing of blocks (otherwise we won't encrypt blocks in parallel)
|
||||
class Caching2BlockStore: public BlockStore {
|
||||
public:
|
||||
Caching2BlockStore(std::unique_ptr<BlockStore> baseBlockStore);
|
||||
|
@ -9,6 +9,7 @@ namespace blockstore {
|
||||
namespace caching2 {
|
||||
|
||||
//TODO Test
|
||||
//TODO Move to utils
|
||||
template<class Key, class Value>
|
||||
class QueueMap {
|
||||
public:
|
||||
|
Loading…
Reference in New Issue
Block a user