1 Name: LevelDB: A Fast Persistent Key-Value Store
3 URL: https://github.com/google/leveldb.git
6 License File: src/LICENSE
10 Alternative to SQLite used as the backend for IndexedDB and internally by the
11 FileSystem API implementation and others.
14 * gyp file for building in chromium
15 * port/port_chromium.{h,cc} and env_chromium.{h,cc} provide chromium
16 implementations of primitives used by leveldb. E.g. threading, file handling,
17 etc. env_chromium.h allows re-use of some utility functions.
18 * chromium_logger.h was copied from src/util/posix_logger.h and updated to use
19 chrome primitives in place of some posix primitives
20 * Logging of uma statistics. Can be overridden by derived class to redirect to
22 * TRACE macros/thread name for chrome://tracing diagnostics
23 * Handle in-process exclusive file locks, based on src/util/env_posix.cc
24 * Unit tests for the Chromium environment.