docs/hash Directory Referencedocs/hash Directory ReferenceDetailed DescriptionThis section contains documentation for the hash operations of ArmaRAMDb that allow for working with hash tables (key-value pairs within a namespace).Available FunctionshashDelete - Delete a hashhashDeleteId - Delete a hash for a specific IDhashGet - Get a field from a hashhashGetAll - Get all fields from a hashhashGetAllId - Get all fields from a hash for a specific IDhashGetId - Get a field from a hash for a specific IDhashRemove - Remove a field from a hashhashRemoveId - Remove a field from a hash for a specific IDhashSet - Set a field in a hashhashSetBulk - Set multiple fields in a hash in one operationhashSetId - Set a field in a hash for a specific IDhashSetIdBulk - Set multiple fields in a hash for a specific ID in one operationExample Usage// Context mode examples
["myField", [myValue]] call ramdb_db_fnc_hashSet;
["myField", "myFunction"] call ramdb_db_fnc_hashGet;
["myFunction"] call ramdb_db_fnc_hashGetAll;
["myField"] call ramdb_db_fnc_hashRemove;
[] call ramdb_db_fnc_hashDelete;
// Set multiple hash fields in one operation
[[
"loadout", [getUnitLoadout player],
"position", [getPosASL player],
"direction", [getDir player]
]] call ramdb_db_fnc_hashSetBulk;
// ID-specific examples
["myHash", "myField", [myValue]] call ramdb_db_fnc_hashSetId;
["myHash", "myField", "myFunction"] call ramdb_db_fnc_hashGetId;
["myHash"] call ramdb_db_fnc_hashGetAllId;
["myHash", "myField"] call ramdb_db_fnc_hashRemoveId;
["myHash"] call ramdb_db_fnc_hashDeleteId;
Related CategoriesCore FunctionsBasic Data OperationsList Operations