From 542cc10b1943f7bd425841ad413bb38cd9bca94d Mon Sep 17 00:00:00 2001 From: Dhruba Borthakur Date: Tue, 30 Jul 2013 08:30:13 -0700 Subject: [PATCH] Fix README contents. Summary: Fix README contents. Test Plan: Reviewers: CC: Task ID: # Blame Rev: --- README | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/README b/README index 4ac8f93cb..4d605f5bc 100644 --- a/README +++ b/README @@ -1,5 +1,7 @@ rocksdb: A persistent key-value store for flash storage -Authors: The Facebook Database Engineering Team +Authors: * The Facebook Database Engineering Team + * Build on earlier work on leveldb by Sanjay Ghemawat + (sanjay@google.com) and Jeff Dean (jeff@google.com) This code is a library that forms the core building block for a fast key value server, especially suited for storing data on flash drives. @@ -56,6 +58,25 @@ include/env.h Abstraction of the OS environment. A posix implementation of this interface is in util/env_posix.cc -include/table.h include/table_builder.h Lower-level modules that most clients probably won't use directly + +include/cache.h + An API for the block cache. + +include/compaction_filter.h + An API for a application filter invoked on every compaction. + +include/filter_policy.h + An API for configuring a bloom filter. + +include/memtablerep.h + An API for implementing a memtable. + +include/statistics.h + An API to retrieve various database statistics. + +include/transaction_log_iterator.h + An API to retrieve transaction logs from a database. + + -- GitLab