An open API service indexing awesome lists of open source software.

https://github.com/simplito/ldba-php

High-performance, low-memory-footprint, single-file embedded database for key/value storage
https://github.com/simplito/ldba-php

database embedded-database php storage

Last synced: 28 days ago
JSON representation

High-performance, low-memory-footprint, single-file embedded database for key/value storage

Awesome Lists containing this project

README

          

# LDBA - a fast, pure PHP, key-value database.

## Information

LDBA is a high-performance, low-memory-footprint, single-file embedded database for key/value storage and retrieval written in pure PHP.

It is inspired by Erlang's Dets and Berkeley DB sofware and includes implementation of [extended linear hashing](https://en.wikipedia.org/wiki/Linear_hashing) for fast key/value access and implementation of a fast [buddy storage allocator](https://en.wikipedia.org/wiki/Buddy_memory_allocation) for file space management.

LDBA supports insertion and deletion of records and lookup by exact key match only. Applications may iterate over all records stored in a database, but
the order in which they are returned is undefined. Fault tolerance is achieved by automatic crash recovery thanks to transactional style writes. The size of LDBA files cannot exceed 2GB.

LDBA provides functions compatible with [php_dba](http://php.net/manual/en/book.dba.php) (Database Abstraction Layer) for easy adoption in existing software.

Requirements: PHP 5.4+

The library is being used, for example, as base storage interface in the [PrivMX WebMail](https://privmx.com) software.

## Instalation

Run the following command to install the lib via composer:
```
composer require simplito/ldba-php
```

## An example

```php
$dbh = ldba_open("test.ldb", "c");
if (ldba_exists("counter", $dbh)) {
$counter = intval(ldba_fetch("counter", $dbh));
} else {
$counter = 0;
}
ldba_replace("counter", $counter + 1);
ldba_close($dbh);
```