forked from facebook/rocksdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: Fix README contents. Test Plan: Reviewers: CC: Task ID: # Blame Rev:
- Loading branch information
Showing
1 changed file
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
([email protected]) and Jeff Dean ([email protected]) | ||
|
||
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. | ||
|
||
|