Panda

Results 7 issues of Panda

This issue describe a possible way to ingest external SST file to a running agatedb instance just as rocksdb. # Background TiKV use ingest external SST feature for some use...

When getting value from LSM, agatedb iters on levelhandlers and calls `LevelHandler::get()` under a `RwLockReadGuard` which will cause the whole read I/O path on this level under a read lock....

DO NOT MERGE! This is just an example impl for block cache. The design of LRU is copied from leveldb. (I'm a Rust beginner. So the code is quite ugly.)...

Signed-off-by: wangnengjie [[email protected]](mailto:[email protected]) See details in: https://github.com/tikv/agatedb/issues/187

Defaultly, LRU cache uses a policy `kFullChargeCacheMetadata` which will take memory usage of meta into account. While using it as file cache where we hope 1 file takes only 1...

I recently tried to use c++ 23 to write some code and found compiler gave me some warning that std::align_storage is deprecated. According to the comment, it can use alignas...

currently oha will use the number of cores available to the system. (`#[tokio::main]` will set it by default) it will be nice to be able to configure it by an...