278 projects tagged "Database Engines/Servers"
VoltDB is a blazingly fast relational database system. It is specifically designed to run on modern scale-out architectures: fast, inexpensive servers connected via high-speed data networks. It is aimed at a new generation of database applications - real-time feeds, sensor-driven data streams, micro-transactions, low-latency trading systems - requiring database throughput that can reach millions of operations per second. What’s more, the applications that use this data must scale on demand, provide flawless fault tolerance, and enable real-time visibility into the data that drives business value. It includes client application drivers for applications written in Java, C++, C#, PHP, and Python. VoltDB community members have also authored client libraries for Erlang, Ruby and Node.js. There are streaming export capabilities for leading analytic database environments, including Apache Hadoop.
Neo4j is a graph database, a fully transactional database that stores data structured as graphs. A graph is a flexible data structure that allows for a more agile and rapid style of development. You can think of Neo4j as a high-performance graph engine with all the features of a mature and robust database. The programmer works with an object-oriented, flexible network structure rather than with strict and static tables, yet enjoys all the benefits of a fully transactional, enterprise-strength database. The community edition is GPLv3 licensed, while the advanced and enterprise editions are AGPLv3 licensed.
MariaDB is a database server that offers drop-in replacement functionality for MySQL. It is built by some of the original authors of MySQL, with assistance from the broader community. In addition to the core functionality of MySQL, it offers a rich set of feature enhancements including alternate storage engines, server optimizations, and patches.
HailDB is a relational database in shared library form that can be embedded into applications. It is not a SQL database, although you can use this library as the storage backend for a SQL database. It features a clean and simple API and is a continuation of the Embedded InnoDB project. With the addition of the HailDB plugin to Drizzle, you get a full SQL interface.
Infobright Community Edition (ICE) is an analytic database built on MySQL, designed to deliver very fast query response against large data volumes. It is a self-tuning, columnar database that eliminates the need to create or maintain indexes, partition data, or perform other administrative tasks.
DeveelDB is an embedded SQL database management system for .NET, implementing all the features of the SQL92 specifications (transactions, triggers, procedures, functions, etc.). The aim is to provide .NET and Mono developers with a fully functional, powerful, and embeddable database system that can be used in several contexts, managing small to large amounts of data.
MckoiDDB is a distributed database system for applications that need to support low latency random access (read and write) queries on datasets that span a cluster of machines in a network. The software provides the system for managing the storage of data over the network cluster and a client API for accessing and querying the data. The MckoiDDB system can scale up or down as resources are added or removed in the network, and is flexible in how the logical data models of an application are designed and implemented. MckoiDDB can be installed on high-speed private networks and over instances in Cloud service providers.
hamsterdb Transactional Storage is an ANSI-C implementation of a key/value database engine. It has a lock-free architecture, thus supporting an arbitrary number of long-running transactions and resolves transaction conflicts in memory without accessing the disk. hamsterdb uses logical, idempotent logging for recovery. It is thread-safe and concurrent, moving performance intensive operations to the background. Every hamsterdb handle can be used from arbitrary threads.