docs/basic Directory Referencedocs/basic Directory ReferenceDetailed DescriptionThis section contains documentation for the basic data operations of ArmaRAMDb that allow for simple key-value storage and retrieval.Available Functionsdelete - Delete a value from the databasefetch - Fetch a value from the databaseget - Get a value from the databaseload - Load the database from disksave - Save the database to diskset - Set a value in the databaseExample Usage// Set a value
["myKey", [myValue]] call ramdb_db_fnc_set;
// Get a value
["myKey", "myFunction"] call ramdb_db_fnc_get;
// Delete a key
["myKey"] call ramdb_db_fnc_delete;
// Save database to disk
[] call ramdb_db_fnc_save;
Related CategoriesCore FunctionsHash OperationsList Operations