rocksdb/thrift
Dhruba Borthakur 0c98fdcf27 Encode id1Type, id2Type and data version the assoc payload.
Summary:

Test Plan:

Reviewers:

CC:

Task ID: #

Blame Rev:
2012-08-02 14:09:13 -07:00
..
folly Implement the FB-Assoc API via thrift. 2012-08-01 16:18:24 -07:00
gen-cpp Implement the FB-Assoc API via thrift. 2012-08-01 16:18:24 -07:00
if Implement the FB-Assoc API via thrift. 2012-08-01 16:18:24 -07:00
lib/cpp Implement the FB-Assoc API via thrift. 2012-08-01 16:18:24 -07:00
libs Implement the FB-Assoc API via thrift. 2012-08-01 16:18:24 -07:00
test Encode id1Type, id2Type and data version the assoc payload. 2012-08-02 14:09:13 -07:00
assoc.h Encode id1Type, id2Type and data version the assoc payload. 2012-08-02 14:09:13 -07:00
openhandles.h Encode id1Type, id2Type and data version the assoc payload. 2012-08-02 14:09:13 -07:00
README Cleanup thrift header files. 2012-07-10 10:19:49 -07:00
server_options.h Fix "gcc -Wall" warnings for assoc-thrift code. 2012-08-01 17:28:35 -07:00
server_utils.cpp Fix "gcc -Wall" warnings for assoc-thrift code. 2012-08-01 17:28:35 -07:00
server.cpp Share a single cache for all the DBs served by this server. 2012-07-11 14:08:46 -07:00

This directory has the thrift server code that exposes leveldb apis.

The thrift api is specified in thrift/if/leveldb.thrift. 

The thrift header files are in ./thrift/lib. These are part of 
Apache Thrift code base and are needed for compilation of the leveldb
thrift server. The thrift libraries are copied into ./thrift/libs.
If you want to use a different version of thrift, please update these
directories with the corresponding thrift header files and the
compiled thrift libraries.

If you want to compile leveldb with thrift-server support, please set the following
enviroment variables appropriately:
   USE_THRIFT=1
   LD_LIBRARY_PATH=$LD_LIBRARY_PATH:./thrift/libs
   make clean leveldb_server leveldb_server_test

You can run the leveldb server unit tests by
  ./leveldb_server_test

You can regenerate the thrift cpp files by doing the following

cd ./thrift
thrift --gen cpp if/leveldb.thrift