You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
The ability to create and define specific indexes - Being Created on Filebase (Version 2)
Example:
// setting up a new index called "category" for all the properties named "category_name" $db->index('category')->add('category_name');
// If index is out of date or needs to be updated$db->index('category')->update();
// deleting an existing index$db->index('category')->remove();
// setting the database to use/have specific indexes available// indexes "can" slow things down, so always best not to overload.$db = newFilebase\Database([
'index' => ['category']
]);
For this to work, all documents in the database directory would need to have the property of category_name in this example.
The text was updated successfully, but these errors were encountered:
The ability to create and define specific indexes - Being Created on Filebase (Version 2)
Example:
For this to work, all documents in the database directory would need to have the property of
category_name
in this example.The text was updated successfully, but these errors were encountered: