Filebase icon indicating copy to clipboard operation
Filebase copied to clipboard

A Simple but Powerful Flat File Database Storage.

Results 21 Filebase issues
Sort by recently updated
recently updated
newest added

in normal mode can search in db with `$db->where('name','==','sam')->first(); //working` with this commit changes can search in other way easy and shorter : `$db->whereName('sam')->first(); // equals ('name','==','sam') //working` also can...

Query should separate the logic between findall and query itself. A solution is to import the concept of DocumentSet. It seems like: $documents = $db->findAll(); or $documents = $db->find(['books','apples','writers','cars']); $documents->query(.....);...

enhancement

Would it be possible to implement some sort of index mechanism? This way queries which refer to indexed fields would be found much faster.

enhancement
V1 - Feature Request

Why we need replication data? - This will make our php server stronger to handle million data. - Easy to scale horizontally. How we can achieve this? - The simple...

I have a scene to let a user register an unique name or something else. I think it may be done by an atom operation using the locks when opening...

Hi, I have this saved database with me in this format. As you can see accounts have multiple array elements containing accID, server, expiry, editable, payment, etc.. Whenever I try...

it could be very useful to implement coding style guide like PSR-2: https://www.php-fig.org/psr/psr-2/ (https://akrabat.com/checking-your-code-for-psr-2/) + refactor docblocks so they are consistent here is an example: https://github.com/assemblie/Filebase/tree/style-guide its really lot of...

enhancement

The ability to create and define **specific indexes** - Being Created on Filebase (Version 2) Example: ```php // setting up a new index called "category" for all the properties named...

enhancement
V2 - Feature Request

Ability to set a scheme for the database. Similar to the validate system, but only allow a specific scheme format to enter your data. This would allow you to maintain...

V2 - Feature Request

Give users ability to disable the `updatedAt` and `createdAt` timestamp functionality and have users data only documents without compromising users data with additional configuration variables. Possible Config Variable: `timestamp` =...

V2 - Feature Request