TileDB alternatives and similar libraries
Based on the "Database" category.
Alternatively, view TileDB alternatives based on common mentions on social networks and blogs.
-
RocksDB
A library that provides an embeddable, persistent key-value store for fast storage. -
LevelDB
LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string keys to string values. -
LMDB
Read-only mirror of official repo on openldap.org. Issues and pull requests here are ignored. Use OpenLDAP ITS for issues. -
SQLite
Unofficial git mirror of SQLite sources (see link for build instructions) -
cpp_redis
C++11 Lightweight Redis client: async, thread-safe, no dependency, pipelining, multi-platform. -
libmdbx
One of the fastest embeddable key-value ACID database without WAL. libmdbx surpasses the legendary LMDB in terms of reliability, features and performance. -
Bedrock
Rock solid distributed database specializing in active/active automatic failover and WAN replication -
upscaledb
A very fast lightweight embedded database engine with a built-in query language. -
SimDB
A high performance, shared memory, lock free, cross platform, single file, no dependencies, C++11 key-value store -
ObjectBox C/C++ database
C and C++ database for objects and structs -
BerylDB
BerylDB is a fully modular data structure data manager that can be used to store data as key-value entries. The server allows channel subscription and is optimized to be used as a cache repository. Supported structures include lists, sets, multimaps, and keys.
Write Clean C++ Code. Always.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of TileDB or a related project?
README
The Universal Storage Engine
TileDB is a powerful engine for storing and accessing dense and sparse multi-dimensional arrays, which can help you model any complex data efficiently. It is an embeddable C++ library that works on Linux, macOS, and Windows. It is open-sourced under the permissive MIT License, developed and maintained by TileDB, Inc. To distinguish this project from other TileDB offerings, we often refer to it as TileDB Embedded.
TileDB includes the following features:
- Support for both dense and sparse arrays
- Support for dataframes and key-value stores (via sparse arrays)
- Cloud storage (AWS S3, Google Cloud Storage, Azure Blob Storage)
- Chunked (tiled) arrays
- Multiple compression, encryption and checksum filters
- Fully multi-threaded implementation
- Parallel IO
- Data versioning (rapid updates, time traveling)
- Array metadata
- Array groups
- Numerous APIs on top of the C++ library
- Numerous integrations (Spark, Dask, MariaDB, GDAL, etc.)
You can use TileDB to store data in a variety of applications, such as Genomics, Geospatial, Finance and more. The power of TileDB stems from the fact that any data can be modeled efficiently as either a dense or a sparse multi-dimensional array, which is the format used internally by most data science tooling. By storing your data and metadata in TileDB arrays, you abstract all the data storage and management pains, while efficiently accessing the data with your favorite data science tool.
Quickstart
You can install the TileDB library as follows:
# Homebrew (macOS):
$ brew update
$ brew install tiledb-inc/stable/tiledb
# Or Conda (macOS, Linux, Windows):
$ conda install -c conda-forge tiledb
Alternatively, you can use the Docker image we provide:
$ docker pull tiledb/tiledb
$ docker run -it tiledb/tiledb
We include several examples. You can start with the following:
Documentation
You can find the detailed TileDB documentation at https://docs.tiledb.com.
Building from source
Please see building from source in the documentation.
Format Specification
The TileDB data format is open-source and can be found [here](format_spec/FORMAT_SPEC.md).
APIs
The TileDB team maintains a variety of APIs built on top of the C++ library:
Integrations
TileDB is also integrated with several popular databases and data science tools:
Get involved
TileDB Embedded is an open-source project and welcomes all forms of contributions. Contributors to the project should read over the contribution docs for more information.
We'd love to hear from you. Drop us a line at [email protected], visit our forum or contact form, or follow us on Twitter to stay informed of updates and news.
*Note that all licence references and agreements mentioned in the TileDB README section above
are relevant to that project's source code only.