mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
MariaDB server is a community developed fork of MySQL server. Started by core members of the original MySQL team, MariaDB actively works with outside developers to deliver the most featureful, stable, and sanely licensed open SQL server in the industry.
amazon-web-servicesdatabasefulltext-searchgalerageographical-information-systeminnodbjsonmariadbmysqlrdbmsrelational-databasessqlstorage-enginevector-database
05eeb46a18
- minimum key/val size is up to 8 bytes. now perf tests and stress tests have a consistent mechanism for generating keys and values, reducing headache. - perf tests use a "main" function that generates tables based on the provided key/val size and compressibility, while stress (correctness) tests use a main function that generates tables with a provided (default in all cases, I think) key/val size and fully zero'd values, so the table is in the "correct" zero-sum state. previously this was causing perf tests to generate zer-valued rows always, no matter what row size you wanted or how much compressibility was requested, which clearly skewed performance results (ie: your 100 byte rows are only 8 bytes) - renamed legacy NULL pointers to nullptr - moved some "special" operations to the perf/stress tests that use them instead of the global header, to keep things more tidy. git-svn-id: file:///svn/toku/tokudb@51258 c7de825b-a66e-492c-adef-691d508d4ae1 |
||
---|---|---|
buildheader | ||
cmake | ||
cmake_modules | ||
cxx | ||
db-benchmark-test | ||
db-benchmark-test-cxx | ||
examples | ||
ft | ||
include | ||
lib | ||
locktree | ||
man | ||
portability | ||
scripts | ||
src | ||
third_party/xz-4.999.9beta | ||
toku_include | ||
util | ||
utils | ||
bash.suppressions | ||
CMakeLists.txt | ||
CTestConfig.cmake | ||
CTestCustom.cmake | ||
DartConfig.cmake | ||
README |
The Tokutek Fractal Tree Index library is not publicly available software. This software product is Tokutek commercial software and use of this software is governed by your applicable license agreement with Tokutek. Fractal Tree Index Library The Fractal Tree Index software is provided as a shared library called "libtokufractaltreeindex-RELEASE.so". Installation Copy "libtokufractaltreeindex-RELEASE.so" to some place that the library loader uses to find libraries. For example, on Centos 5, 64 bit libraries are found in /usr/lib64. Installation is as simple as executing the following: sudo cp libtokufractaltreeindex-RELEASE.so /usr/lib64 Some users put it into "/usr/local/mysql/lib" because some useful binaries include "/usr/local/mysql/lib" in their rpath, and can use the library. Some users put it into /opt, for example in "/opt/tokutek/lib". In this case you will need to arrange for the loader to be able to find it (e.g., by arranging that LD_LIBRARY_PATH includes /opt/tokutek/lib). If you do not have root access you can put it into a directory in your home directory. You may need to help the loader find it, using something like: mkdir ~/lib cp libtokufractaltreeindex-RELEASE.so ~/lib/ export LD_LIBRARY_PATH=~/lib/ To use the Fractal Tree Index as an embedded database, please read the README.examples file in the examples directory. Any such use requires a license from Tokutek. Notice: MySQL is a registered trademark of Sun Microsystems, Inc.