dev-master
9999999-dev http://divengine.comDiv PHP Nodes is a No-SQL Database System for PHP written in PHP
GPL-3.0+
The Requires
- php >=5.4.0
database serialization storage no-sql
Div PHP Nodes is a No-SQL Database System for PHP written in PHP
Div PHP Nodes is a PHP library for storing relational and serialized data without the need for an external server. The data is organized into schemas, and each object (or "node") can be indexed for full-text search and fast lookup., (*2)
This class manages file-based databases and provides mechanisms to avoid concurrency issues using file locking. Additionally, it allows:, (*3)
With composer..., (*4)
composer require divengine/nodes
Without composer, download the class and..., (*5)
include "path/to/divengine/nodes.php";
<?php use divengine/nodes; $db = new nodes("database/contacts"); $id = $db->addNode([ "name" => "Peter", "age" => 25 ]); $db->setNode($id, [ "email" => "peter@email.com", "phone" => "+1222553335" ]); $contact = $db->getNode($id); $db->delNode($id);
Enjoy!, (*6)
Div PHP Nodes is a No-SQL Database System for PHP written in PHP
GPL-3.0+
database serialization storage no-sql