The smallest PHP lightweight NoSQL database library, flat file JSON.
The main goal of Jisly is to allow you to quickly start your project with the possibility of memory and flat-file storage using a NoSQL (document oriented) query syntax.
Concurrent access is managed !
This lib can be found on Packagist
composer require r0mdau/jisly:^2.0
Jisly relies on the PSR-4 specification for autoloading classes from file paths.
use Jisly\JislyCollection;
public function saveCart(): void {
$jisly = new JislyCollection("/tmp/data", "cart");
...
}
- Each document has a unique identifier called
_rid
. - Each collection is physically represented by a file.
- The files are stored in a single working directory. The Jisly class is instantiated with the path to this directory as a parameter.
- Each time you CRUD something, all datas are stored in memory.
- And datas are saved on filesystem.
$directory
contains the path to the directory where the files (=collections) of the data model will be stored.
$database = new Jisly($directory);
$name
contains the name of the collection we want to request. Example : user
.
Returns an object JislyCollection :
$database->collection($name);
Warning : each first time you access a collection, all datas are stored in memory.
PREAMBLE :
The Insert, Update, Delete methods return a boolean, true
if the action went well, false
otherwise.
Insert the array into the specified collection in JSON format and assigns a unique _rid
identifier to the document if
it has not been specified :
$successBool = $database->collection($file)->insert(
[
"name" => "Lucas",
"firstname" => "Georges"
]
);
You must first find all documents to delete to provide the _rid
attribute to the delete method.
Remove the only document in the collection which has the value $rid
to the attribute _rid
:
$successBool = $database->collection($file)->delete($rid);
Returns all documents in the collection in an array() of objects :
$results = $database->collection($file)->find();
Return all documents in the collection that have a name
attribute with Lucas
as value in an array() of objects :
$results = $database->collection($file)->find(
[
"name" => "Lucas"
]
);
Return the first document that as a name
attribute with 19
as an object value :
$result = $database->collection($file)->findOne(
[
"name" => 19
]
);
These two logical operators can be used on find
and findOne
methods.
If no logical operator is provided, OR is used.
Return all documents in the collection that have a name
attribute with Lucas
OR a firstname
attribute with
Georges
as values in an array() of objects :
$result = $database->collection($file)->find(
[
"firstname" => "Georges",
"name" => "Lucas"
], JislyCollection::LOGICAL_OR
);
Return the first document in the collection that have a name
attribute with Lucas
AND a firstname
attribute with
Georges
as an object value :
$result = $database->collection($file)->findOne(
[
"firstname" => "Georges",
"name" => "Lucas"
], JislyCollection::LOGICAL_AND
);
For the modification, the documents concerned are entirely replaced by the second array() given in parameter.
You must first find all the documents to replace to provide the _rid
attribute to the update method.
Modify the only document in the collection whose value $rid to the _rid
attribute :
$successBool = $database->collection($file)->update(
$rid,
[
"firstname" => "Georges",
"name" => "Lucas"
]
);