leveldb-windows

所属分类:Windows编程
开发工具:C/C++
文件大小:252KB
下载次数:2
上传日期:2019-04-28 09:33:41
上 传 者csvj_lamber
说明:  Leveldb是一个google实现的非常高效的kv数据库,目前的版本1.2能够支持billion级别的数据量了。 在这个数量级别下还有着非常高的性能,主要归功于它的良好的设计。本源码自测可用
(Leveldb is a highly efficient kV database implemented by Google, and the current version 1.2 supports billion-level data volumes. There is also very high performance at this level, mainly due to its good design.)

文件列表:
leveldb-windows (0, 2016-01-16)
leveldb-windows\AUTHORS (193, 2016-01-16)
leveldb-windows\LICENSE (1484, 2016-01-16)
leveldb-windows\Makefile (7012, 2016-01-16)
leveldb-windows\NEWS (509, 2016-01-16)
leveldb-windows\TODO (494, 2016-01-16)
leveldb-windows\WINDOWS (1542, 2016-01-16)
leveldb-windows\build_detect_platform (2294, 2016-01-16)
leveldb-windows\db (0, 2016-01-16)
leveldb-windows\db\builder.cc (2141, 2016-01-16)
leveldb-windows\db\builder.h (1080, 2016-01-16)
leveldb-windows\db\c.cc (12316, 2016-01-16)
leveldb-windows\db\c_test.c (8764, 2016-01-16)
leveldb-windows\db\corruption_test.cc (9755, 2016-01-16)
leveldb-windows\db\db_bench.cc (25643, 2016-01-16)
leveldb-windows\db\db_impl.cc (41669, 2016-01-16)
leveldb-windows\db\db_impl.h (6570, 2016-01-16)
leveldb-windows\db\db_iter.cc (8069, 2016-01-16)
leveldb-windows\db\db_iter.h (783, 2016-01-16)
leveldb-windows\db\db_test.cc (45293, 2016-01-16)
leveldb-windows\db\dbformat.cc (3703, 2016-01-16)
leveldb-windows\db\dbformat.h (7261, 2016-01-16)
leveldb-windows\db\dbformat_test.cc (3781, 2016-01-16)
leveldb-windows\db\filename.cc (3697, 2016-01-16)
leveldb-windows\db\filename.h (2794, 2016-01-16)
leveldb-windows\db\filename_test.cc (3353, 2016-01-16)
leveldb-windows\db\log_format.h (857, 2016-01-16)
leveldb-windows\db\log_reader.cc (7941, 2016-01-16)
leveldb-windows\db\log_reader.h (3532, 2016-01-16)
leveldb-windows\db\log_test.cc (13038, 2016-01-16)
leveldb-windows\db\log_writer.cc (2804, 2016-01-16)
leveldb-windows\db\log_writer.h (1247, 2016-01-16)
leveldb-windows\db\memtable.cc (4761, 2016-01-16)
leveldb-windows\db\memtable.h (2715, 2016-01-16)
leveldb-windows\db\repair.cc (11746, 2016-01-16)
leveldb-windows\db\skiplist.h (11128, 2016-01-16)
leveldb-windows\db\skiplist_test.cc (9766, 2016-01-16)
leveldb-windows\db\snapshot.h (1644, 2016-01-16)
leveldb-windows\db\table_cache.cc (2612, 2016-01-16)
... ...

leveldb: A key-value store Authors: Sanjay Ghemawat (sanjay@google.com) and Jeff Dean (jeff@google.com) The code under this directory implements a system for maintaining a persistent key/value store. See doc/index.html for more explanation. See doc/impl.html for a brief overview of the implementation. The public interface is in include/*.h. Callers should not include or rely on the details of any other header files in this package. Those internal APIs may be changed without warning. Guide to header files: include/db.h Main interface to the DB: Start here include/options.h Control over the behavior of an entire database, and also control over the behavior of individual reads and writes. include/comparator.h Abstraction for user-specified comparison function. If you want just bytewise comparison of keys, you can use the default comparator, but clients can write their own comparator implementations if they want custom ordering (e.g. to handle different character encodings, etc.) include/iterator.h Interface for iterating over data. You can get an iterator from a DB object. include/write_batch.h Interface for atomically applying multiple updates to a database. include/slice.h A simple module for maintaining a pointer and a length into some other byte array. include/status.h Status is returned from many of the public interfaces and is used to report success and various kinds of errors. 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

近期下载者

相关文件


收藏者