Congyu
Congyu
packed_simd is now in nightly rust std library. Any consideration for supporting them?
Except for using `spawn_blocking` to spawn it to another thread, using `block_in_place` also works: ```rust use std::time::Duration; use std::time::Instant; async fn handle_request(start_time: Instant) { tokio::time::sleep(Duration::from_millis(500)).await; println!("request took {}ms", start_time.elapsed().as_millis()); }...
Atomic loading a null 0x0 address? Looks like a rocksdb bug. Does this occur if testing with c++ rocksdb of the same version?
Valid call seems very cheap, just returning a flag: https://github.com/facebook/rocksdb/blob/543191f2eacadf14e3aa6ff9a08f85a8ad82da95/db/db_iter.h#L144
Can any one take a look at PR #724?
You still will have to copy into buffer, since the data needs to be properly aligned.
Agree. `open_default` actually create a `default` column family, but it can't be accessed by `cf_handle` since it is not stored in the `cfs` map. My current workaround simply is to...
Try this: https://github.com/Congyuwang/RocksDict. `pip install rocksdict` No need to compile. Pre-built wheels for python 3.6-3.10, Windows, Mac, and Linux
Exactly, seems to me V will have to handle special case after special case in the future, and there won't be an end, if the memory management model does not...
VSCode behavior: https://github.com/zed-industries/zed/assets/52687642/d6790634-6a7a-4c7e-9695-0e3124727cc8 The definition is not selected, but is actually kind of "highlighted" for a short while. Also, when the definition is already in view, VSCode won't scroll, which...