Current icon indicating copy to clipboard operation
Current copied to clipboard

Added support for `LevelDB` to Current!

Open dkorolev opened this issue 1 year ago • 1 comments

This works now: https://github.com/dkorolev/current_with_leveldb.

mkdir -p clean/with/subdirs
(cd clean/with/subdirs; git clone https://github.com/dkorolev/current_with_leveldb) &&
(cd clean/with/subdirs/current_with_leveldb; CURRENT_WITH_LEVELDB=true make) && (
  cd clean/with/subdirs/current_with_leveldb &&
  ./.current/create_leveldb &&
  ./.current/scan_leveldb &&
  ./.current/populate_leveldb &&
  ./.current/scan_leveldb &&
  ./.current/populate_leveldb --key foo --value bar &&
  ./.current/scan_leveldb
)
rm -rf clean/with/subdirs/current_with_leveldb
rmdir clean/with/subdirs
rmdir clean/with
rmdir clean

I've also pushed leveldb into https://github.com/c5t/leveldb.

Thanks, Dima

dkorolev avatar Feb 17 '24 09:02 dkorolev

@dkorolev: Note to self, clean this up to use leveldb as a C5T component. CC @mzhurovich.

dkorolev avatar Apr 06 '24 13:04 dkorolev