| /rocksdb-6.9/utilities/ |
| D | object_registry_test.cc | 66 registry->AddLibrary(library); in TEST_F() 67 library->Register<Env>( in TEST_F() 91 registry->AddLibrary(library); in TEST_F() 92 library->Register<Env>( in TEST_F() 97 library->Register<Env>( in TEST_F() 115 registry->AddLibrary(library); in TEST_F() 116 library->Register<Env>( in TEST_F() 121 library->Register<Env>( in TEST_F() 139 registry->AddLibrary(library); in TEST_F() 140 library->Register<Env>( in TEST_F() [all …]
|
| /rocksdb-6.9/ |
| D | thirdparty.inc | 27 message(STATUS "GFLAGS library is enabled") 48 message(STATUS "GFLAGS library is disabled") 66 message(STATUS "SNAPPY library is enabled") 87 message(STATUS "SNAPPY library is disabled") 106 message(STATUS "LZ4 library is enabled") 127 message(STATUS "LZ4 library is disabled") 145 message(STATUS "ZLIB library is enabled") 166 message(STATUS "ZLIB library is disabled") 204 message(STATUS "ZSTD library is enabled") 226 message(STATUS "ZSTD library is disabled") [all …]
|
| D | INSTALL.md | 7 RocksDB's library should be able to compile without any dependency installed, 13 …`make static_lib` will compile librocksdb.a, RocksDB static library. Compiles static library in re… 15 * `make shared_lib` will compile librocksdb.so, RocksDB shared library. Compiles shared library in … 19 * `make all` will compile our static library, and all our tools and unit tests. Our tools 33 - [zlib](http://www.zlib.net/) - a library for data compression. 34 - [bzip2](http://www.bzip.org/) - a library for data compression. 35 - [lz4](https://github.com/lz4/lz4) - a library for extremely fast data compression. 36 - [snappy](http://google.github.io/snappy/) - a library for fast 42 - [gflags](https://gflags.github.io/gflags/) - a library that handles 43 command line flags processing. You can compile rocksdb library even [all …]
|
| D | CMakeCache.txt | 325 //Path to a library. 388 //build with debug version of runtime library 434 //Path to a library. 547 //Have library pthreads 549 //Have library pthread
|
| D | README.md | 11 This code is a library that forms the core building block for a fast
|
| D | CMakeLists.txt | 383 option(WITH_RUNTIME_DEBUG "build with debug version of runtime library" ON) 418 # no debug info for IOS, that will make our library big 506 # Main library source code 864 message(STATUS "JNI library is enabled") 867 message(STATUS "JNI library is disabled")
|
| D | COPYING | 336 proprietary programs. If your program is a subroutine library, you may 338 library. If this is what you want to do, use the GNU Lesser General
|
| /rocksdb-6.9/include/rocksdb/utilities/lua/ |
| D | rocks_lua_util.h | 43 for (const auto& library : libraries) { in Init() local 44 luaL_openlib(lua_state_, library->Name(), library->Lib(), 0); in Init() 45 library->CustomSetup(lua_state_); in Init()
|
| /rocksdb-6.9/env/ |
| D | env_test.cc | 244 std::shared_ptr<DynamicLibrary> library; in TEST_F() local 248 ASSERT_EQ(nullptr, library.get()); in TEST_F() 251 ASSERT_NE(nullptr, library.get()); in TEST_F() 257 ASSERT_OK(env_->LoadLibrary(library->Name(), "", &library)); in TEST_F() 259 ASSERT_EQ(nullptr, library.get()); in TEST_F() 269 ASSERT_EQ(nullptr, library.get()); in TEST_F() 271 ASSERT_EQ(nullptr, library.get()); in TEST_F() 274 ASSERT_NE(nullptr, library.get()); in TEST_F() 275 ASSERT_OK(env_->LoadLibrary(library->Name(), "", &library)); in TEST_F() 282 ASSERT_NE(nullptr, library.get()); in TEST_F() [all …]
|
| /rocksdb-6.9/cmake/modules/ |
| D | Findgflags.cmake | 1 # - Find gflags library 2 # Find the gflags includes and library
|
| D | FindJeMalloc.cmake | 1 # - Find JeMalloc library 2 # Find the native JeMalloc includes and library
|
| D | Findlz4.cmake | 2 # Find the lz4 compression library and includes
|
| D | Findzstd.cmake | 2 # Find the zstd compression library and includes
|
| D | Findsnappy.cmake | 2 # Find the snappy compression library and includes
|
| D | FindNUMA.cmake | 2 # Find the NUMA library and includes
|
| D | FindTBB.cmake | 2 # Find the Thread Building Blocks library and includes
|
| /rocksdb-6.9/java/ |
| D | Makefile | 264 …java $(JAVA_ARGS) -Djava.library.path=target -cp $(MAIN_CLASSES):$(SAMPLES_MAIN_CLASSES) RocksDBSa… 272 …java $(JAVA_ARGS) -Djava.library.path=target -cp $(MAIN_CLASSES):$(SAMPLES_MAIN_CLASSES) RocksDBCo… 279 …java -ea -Xcheck:jni -Djava.library.path=target -cp $(MAIN_CLASSES):$(SAMPLES_MAIN_CLASSES) Transa… 286 …java -ea -Xcheck:jni -Djava.library.path=target -cp $(MAIN_CLASSES):$(SAMPLES_MAIN_CLASSES) Optimi… 315 …java $(JAVA_ARGS) -Djava.library.path=target -cp "$(MAIN_CLASSES):$(TEST_CLASSES):$(JAVA_TESTCLASS…
|
| D | HISTORY-JAVA.md | 13 * lz4 compression is now included in rocksjava static library when running `make rocksdbjavastatic`. 54 * Added static method RocksDB.loadLibrary(), which loads necessary library files.
|
| D | jdb_bench.sh | 13 java -server -d$PLATFORM -XX:NewSize=4m -XX:+AggressiveOpts -Djava.library.path=target -cp "${ROCKS…
|
| /rocksdb-6.9/tools/rdb/ |
| D | README.md | 10 * static RocksDB library (i.e. librocksdb.a) 21 1. Make sure you have the static library (i.e. "librocksdb.a") in the root
|
| /rocksdb-6.9/include/rocksdb/utilities/ |
| D | object_registry.h | 99 void AddLibrary(const std::shared_ptr<ObjectLibrary>& library) { in AddLibrary() argument 100 libraries_.emplace_back(library); in AddLibrary()
|
| /rocksdb-6.9/docs/_docs/ |
| D | getting-started.md | 10 The RocksDB library provides a persistent key value store. Keys and values are arbitrary byte array… 12 The library is maintained by the Facebook Database Engineering Team, and is based on [LevelDB](http…
|
| /rocksdb-6.9/CMakeFiles/3.30.5/ |
| D | CMakeCXXCompiler.cmake | 97 ### Imported target for C++23 standard library
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2015-07-17-spatial-indexing-in-rocksdb.markdown | 50 …e add a link from the tile's [quad key](https://msdn.microsoft.com/en-us/library/bb259689.aspx) to…
|
| /rocksdb-6.9/CMakeFiles/ |
| D | CMakeConfigureLog.yaml | 228 collapse library dir [/usr/lib] ==> [/usr/lib] 375 collapse library dir [/usr/lib] ==> [/usr/lib] 775 ld: error: unable to find library -lpthreads
|