项目作者: syucream

项目描述 :
[DEPRECATED] A filesystem interface for KVS's implemented in C++
高级语言: C++
项目地址: git://github.com/syucream/kvfs_cpp.git
创建时间: 2018-10-29T13:58:45Z
项目社区:https://github.com/syucream/kvfs_cpp

开源协议:MIT License

下载


kvfs; key-value store based filesystem

A filesystem interface for KVS’s. Currently supported only LevelDB.

synopsis

  1. # Mount at first
  2. $ ./kvfs testdir --path=/tmp/kvfs/leveldb
  3. # Read and write key-value pairs via filesystem interfaces:
  4. $ echo "value1" > testdir/key1
  5. $ cat testdir/key1
  6. value1
  7. $ gls testdir/
  8. /key1 /key2
  9. $ echo "value2" > testdir/key2
  10. $ echo "value3" > testdir/key3
  11. $ gls testdir/
  12. /key1 /key2 /key3

dependencies