Compare commits
2 Commits
e8fb80fb9b
...
90bcfb28a1
Author | SHA1 | Date | |
---|---|---|---|
![]() |
90bcfb28a1 | ||
![]() |
8c0e8144e5 |
@ -41,9 +41,10 @@ None. The operation runs asynchronously.
|
||||
## Related Functions
|
||||
- `ramdb_db_fnc_get`: Retrieves a value by key
|
||||
- `ramdb_db_fnc_set`: Stores a value by key
|
||||
- `ramdb_db_fnc_scheduler`: Processes the callback response
|
||||
|
||||
## Links
|
||||
|
||||
[Delete Key](delete) |
|
||||
[Get Key](get) |
|
||||
[Set Key](set)
|
||||
[Delete Key](delete.md) |
|
||||
[Get Key](get.md) |
|
||||
[Set Key](set.md)
|
@ -50,6 +50,6 @@ None. When data is retrieved, it will be passed to the specified function. The o
|
||||
|
||||
## Links
|
||||
|
||||
[Delete Key](delete) |
|
||||
[Get Key](get) |
|
||||
[Set Key](set)
|
||||
[Delete Key](delete.md) |
|
||||
[Get Key](get.md) |
|
||||
[Set Key](set.md)
|
@ -40,9 +40,8 @@ None. The operation runs synchronously and loads the database immediately.
|
||||
|
||||
## Related Functions
|
||||
- `ramdb_db_fnc_save`: Saves the database to disk
|
||||
- `ramdb_db_fnc_isLoaded`: Checks if the database has been loaded
|
||||
|
||||
## Links
|
||||
|
||||
[Save DB](save) |
|
||||
[Load DB](load)
|
||||
[Save DB](save.md) |
|
||||
[Load DB](load.md)
|
@ -47,10 +47,8 @@ None. The operation runs synchronously and saves the database immediately.
|
||||
|
||||
## Related Functions
|
||||
- `ramdb_db_fnc_load`: Loads the database from disk
|
||||
- `ramdb_db_fnc_listBackups`: Lists available database backups
|
||||
- `ramdb_db_fnc_restoreBackup`: Restores from a specific backup
|
||||
|
||||
## Links
|
||||
|
||||
[Save DB](save) |
|
||||
[Load DB](load)
|
||||
[Save DB](save.md) |
|
||||
[Load DB](load.md)
|
@ -49,10 +49,10 @@ None. The operation runs asynchronously.
|
||||
## Related Functions
|
||||
- `ramdb_db_fnc_get`: Retrieves a value by key
|
||||
- `ramdb_db_fnc_delete`: Removes a value by key
|
||||
- `ramdb_db_fnc_hashSet`: Stores a value in a hash table for more structured data
|
||||
- `ramdb_db_fnc_scheduler`: Processes the callback response
|
||||
|
||||
## Links
|
||||
|
||||
[Delete Key](delete) |
|
||||
[Get Key](get) |
|
||||
[Set Key](set)
|
||||
[Delete Key](delete.md) |
|
||||
[Get Key](get.md) |
|
||||
[Set Key](set.md)
|
@ -59,9 +59,10 @@ None. The task is added to the queue and processed asynchronously.
|
||||
|
||||
## Links
|
||||
|
||||
[Add Task](addtask) |
|
||||
[Handler](handler) |
|
||||
[Init](init) |
|
||||
[Process Queue](processqueue) |
|
||||
[Scheduler](scheduler) |
|
||||
[Test](test)
|
||||
[Add Task](addtask.md) |
|
||||
[Handler](handler.md) |
|
||||
[Init](init.md) |
|
||||
[Print Addon Name](printaddonname.md) |
|
||||
[Process Queue](processqueue.md) |
|
||||
[Scheduler](scheduler.md) |
|
||||
[Test](test.md)
|
@ -56,9 +56,10 @@ None. The data is passed to the specified function for processing.
|
||||
|
||||
## Links
|
||||
|
||||
[Add Task](addtask) |
|
||||
[Handler](handler) |
|
||||
[Init](init) |
|
||||
[Process Queue](processqueue) |
|
||||
[Scheduler](scheduler) |
|
||||
[Test](test)
|
||||
[Add Task](addtask.md) |
|
||||
[Handler](handler.md) |
|
||||
[Init](init.md) |
|
||||
[Print Addon Name](printaddonname.md) |
|
||||
[Process Queue](processqueue.md) |
|
||||
[Scheduler](scheduler.md) |
|
||||
[Test](test.md)
|
@ -34,13 +34,13 @@ This function is automatically executed during framework initialization and does
|
||||
## Related Functions
|
||||
- `ramdb_db_fnc_load`: Loads database data from disk
|
||||
- `ramdb_db_fnc_save`: Saves database data to disk
|
||||
- `ramdb_db_fnc_isLoaded`: Checks if the database has been loaded
|
||||
|
||||
## Links
|
||||
|
||||
[Add Task](addtask) |
|
||||
[Handler](handler) |
|
||||
[Init](init) |
|
||||
[Process Queue](processqueue) |
|
||||
[Scheduler](scheduler) |
|
||||
[Test](test)
|
||||
[Add Task](addtask.md) |
|
||||
[Handler](handler.md) |
|
||||
[Init](init.md) |
|
||||
[Print Addon Name](printaddonname.md) |
|
||||
[Process Queue](processqueue.md) |
|
||||
[Scheduler](scheduler.md) |
|
||||
[Test](test.md)
|
@ -41,13 +41,13 @@ if (isServer) then {
|
||||
|
||||
## Related Functions
|
||||
- `ramdb_db_fnc_init`: Initializes the database system
|
||||
- `ramdb_db_fnc_isLoaded`: Checks if the database is loaded
|
||||
|
||||
## Links
|
||||
|
||||
[Add Task](addtask) |
|
||||
[Handler](handler) |
|
||||
[Init](init) |
|
||||
[Process Queue](processqueue) |
|
||||
[Scheduler](scheduler) |
|
||||
[Test](test)
|
||||
[Add Task](addtask.md) |
|
||||
[Handler](handler.md) |
|
||||
[Init](init.md) |
|
||||
[Print Addon Name](printaddonname.md) |
|
||||
[Process Queue](processqueue.md) |
|
||||
[Scheduler](scheduler.md) |
|
||||
[Test](test.md)
|
@ -49,9 +49,10 @@ None. The function processes tasks in the queue and updates the processing state
|
||||
|
||||
## Links
|
||||
|
||||
[Add Task](addtask) |
|
||||
[Handler](handler) |
|
||||
[Init](init) |
|
||||
[Process Queue](processqueue) |
|
||||
[Scheduler](scheduler) |
|
||||
[Test](test)
|
||||
[Add Task](addtask.md) |
|
||||
[Handler](handler.md) |
|
||||
[Init](init.md) |
|
||||
[Print Addon Name](printaddonname.md) |
|
||||
[Process Queue](processqueue.md) |
|
||||
[Scheduler](scheduler.md) |
|
||||
[Test](test.md)
|
@ -49,9 +49,10 @@ None. The function registers the task ID in a hashmap for later processing.
|
||||
|
||||
## Links
|
||||
|
||||
[Add Task](addtask) |
|
||||
[Handler](handler) |
|
||||
[Init](init) |
|
||||
[Process Queue](processqueue) |
|
||||
[Scheduler](scheduler) |
|
||||
[Test](test)
|
||||
[Add Task](addtask.md) |
|
||||
[Handler](handler.md) |
|
||||
[Init](init.md) |
|
||||
[Print Addon Name](printaddonname.md) |
|
||||
[Process Queue](processqueue.md) |
|
||||
[Scheduler](scheduler.md) |
|
||||
[Test](test.md)
|
@ -53,9 +53,10 @@ The same value that was passed to the function. Also sets the global variable `r
|
||||
|
||||
## Links
|
||||
|
||||
[Add Task](addtask) |
|
||||
[Handler](handler) |
|
||||
[Init](init) |
|
||||
[Process Queue](processqueue) |
|
||||
[Scheduler](scheduler) |
|
||||
[Test](test)
|
||||
[Add Task](addtask.md) |
|
||||
[Handler](handler.md) |
|
||||
[Init](init.md) |
|
||||
[Print Addon Name](printaddonname.md) |
|
||||
[Process Queue](processqueue.md) |
|
||||
[Scheduler](scheduler.md) |
|
||||
[Test](test.md)
|
@ -42,20 +42,20 @@ None. The operation runs synchronously to delete the hash table for the current
|
||||
|
||||
## Related Functions
|
||||
- `ramdb_db_fnc_hashDeleteId`: Removes a specific hash ID (when you need to specify the ID)
|
||||
- `ramdb_db_fnc_hashDeleteField`: Removes a specific field from a hash
|
||||
- `ramdb_db_fnc_hashSet`: Sets a value in the hash table
|
||||
- `ramdb_db_fnc_hashGet`: Retrieves a value from the hash table
|
||||
|
||||
## Links
|
||||
|
||||
[Hash Delete](hashDelete) |
|
||||
[Hash Delete Field](hashDeleteField) |
|
||||
[Hash Delete ID](hashDeleteId) |
|
||||
[Hash Get](hashGet) |
|
||||
[Hash Get All](hashGetAll) |
|
||||
[Hash Get All ID](hashGetAllId) |
|
||||
[Hash Get ID](hashGetId) |
|
||||
[Hash Set](hashSet) |
|
||||
[Hash Set Bulk](hashSetBulk) |
|
||||
[Hash Set ID](hashSetId) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk)
|
||||
[Hash Delete](hashDelete.md) |
|
||||
[Hash Delete ID](hashDeleteId.md) |
|
||||
[Hash Get](hashGet.md) |
|
||||
[Hash Get All](hashGetAll.md) |
|
||||
[Hash Get All ID](hashGetAllId.md) |
|
||||
[Hash Get ID](hashGetId.md) |
|
||||
[Hash Remove](hashRemove.md) |
|
||||
[Hash Remove ID](hashRemoveId.md) |
|
||||
[Hash Set](hashSet.md) |
|
||||
[Hash Set Bulk](hashSetBulk.md) |
|
||||
[Hash Set ID](hashSetId.md) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk.md)
|
@ -49,21 +49,21 @@ None. The operation runs synchronously to delete the specified hash table.
|
||||
|
||||
## Related Functions
|
||||
- `ramdb_db_fnc_hashDelete`: Removes all hash tables
|
||||
- `ramdb_db_fnc_hashDeleteField`: Removes a specific field from a hash
|
||||
- `ramdb_db_fnc_hashSetId`: Sets a value in a specific hash table
|
||||
- `ramdb_db_fnc_hashGetId`: Retrieves a value from a specific hash table
|
||||
- `ramdb_db_fnc_hashGetAllId`: Retrieves all fields from a specific hash table
|
||||
|
||||
## Links
|
||||
|
||||
[Hash Delete](hashDelete) |
|
||||
[Hash Delete Field](hashDeleteField) |
|
||||
[Hash Delete ID](hashDeleteId) |
|
||||
[Hash Get](hashGet) |
|
||||
[Hash Get All](hashGetAll) |
|
||||
[Hash Get All ID](hashGetAllId) |
|
||||
[Hash Get ID](hashGetId) |
|
||||
[Hash Set](hashSet) |
|
||||
[Hash Set Bulk](hashSetBulk) |
|
||||
[Hash Set ID](hashSetId) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk)
|
||||
[Hash Delete](hashDelete.md) |
|
||||
[Hash Delete ID](hashDeleteId.md) |
|
||||
[Hash Get](hashGet.md) |
|
||||
[Hash Get All](hashGetAll.md) |
|
||||
[Hash Get All ID](hashGetAllId.md) |
|
||||
[Hash Get ID](hashGetId.md) |
|
||||
[Hash Remove](hashRemove.md) |
|
||||
[Hash Remove ID](hashRemoveId.md) |
|
||||
[Hash Set](hashSet.md) |
|
||||
[Hash Set Bulk](hashSetBulk.md) |
|
||||
[Hash Set ID](hashSetId.md) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk.md)
|
@ -61,14 +61,15 @@ None. The retrieved data is passed to the specified callback function asynchrono
|
||||
|
||||
## Links
|
||||
|
||||
[Hash Delete](hashDelete) |
|
||||
[Hash Delete Field](hashDeleteField) |
|
||||
[Hash Delete ID](hashDeleteId) |
|
||||
[Hash Get](hashGet) |
|
||||
[Hash Get All](hashGetAll) |
|
||||
[Hash Get All ID](hashGetAllId) |
|
||||
[Hash Get ID](hashGetId) |
|
||||
[Hash Set](hashSet) |
|
||||
[Hash Set Bulk](hashSetBulk) |
|
||||
[Hash Set ID](hashSetId) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk)
|
||||
[Hash Delete](hashDelete.md) |
|
||||
[Hash Delete ID](hashDeleteId.md) |
|
||||
[Hash Get](hashGet.md) |
|
||||
[Hash Get All](hashGetAll.md) |
|
||||
[Hash Get All ID](hashGetAllId.md) |
|
||||
[Hash Get ID](hashGetId.md) |
|
||||
[Hash Remove](hashRemove.md) |
|
||||
[Hash Remove ID](hashRemoveId.md) |
|
||||
[Hash Set](hashSet.md) |
|
||||
[Hash Set Bulk](hashSetBulk.md) |
|
||||
[Hash Set ID](hashSetId.md) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk.md)
|
@ -60,14 +60,15 @@ None. The retrieved data is passed to the specified callback function asynchrono
|
||||
|
||||
## Links
|
||||
|
||||
[Hash Delete](hashDelete) |
|
||||
[Hash Delete Field](hashDeleteField) |
|
||||
[Hash Delete ID](hashDeleteId) |
|
||||
[Hash Get](hashGet) |
|
||||
[Hash Get All](hashGetAll) |
|
||||
[Hash Get All ID](hashGetAllId) |
|
||||
[Hash Get ID](hashGetId) |
|
||||
[Hash Set](hashSet) |
|
||||
[Hash Set Bulk](hashSetBulk) |
|
||||
[Hash Set ID](hashSetId) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk)
|
||||
[Hash Delete](hashDelete.md) |
|
||||
[Hash Delete ID](hashDeleteId.md) |
|
||||
[Hash Get](hashGet.md) |
|
||||
[Hash Get All](hashGetAll.md) |
|
||||
[Hash Get All ID](hashGetAllId.md) |
|
||||
[Hash Get ID](hashGetId.md) |
|
||||
[Hash Remove](hashRemove.md) |
|
||||
[Hash Remove ID](hashRemoveId.md) |
|
||||
[Hash Set](hashSet.md) |
|
||||
[Hash Set Bulk](hashSetBulk.md) |
|
||||
[Hash Set ID](hashSetId.md) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk.md)
|
@ -61,14 +61,15 @@ None. The retrieved data is passed to the specified callback function asynchrono
|
||||
|
||||
## Links
|
||||
|
||||
[Hash Delete](hashDelete) |
|
||||
[Hash Delete Field](hashDeleteField) |
|
||||
[Hash Delete ID](hashDeleteId) |
|
||||
[Hash Get](hashGet) |
|
||||
[Hash Get All](hashGetAll) |
|
||||
[Hash Get All ID](hashGetAllId) |
|
||||
[Hash Get ID](hashGetId) |
|
||||
[Hash Set](hashSet) |
|
||||
[Hash Set Bulk](hashSetBulk) |
|
||||
[Hash Set ID](hashSetId) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk)
|
||||
[Hash Delete](hashDelete.md) |
|
||||
[Hash Delete ID](hashDeleteId.md) |
|
||||
[Hash Get](hashGet.md) |
|
||||
[Hash Get All](hashGetAll.md) |
|
||||
[Hash Get All ID](hashGetAllId.md) |
|
||||
[Hash Get ID](hashGetId.md) |
|
||||
[Hash Remove](hashRemove.md) |
|
||||
[Hash Remove ID](hashRemoveId.md) |
|
||||
[Hash Set](hashSet.md) |
|
||||
[Hash Set Bulk](hashSetBulk.md) |
|
||||
[Hash Set ID](hashSetId.md) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk.md)
|
@ -62,14 +62,15 @@ None. The retrieved data is passed to the specified callback function asynchrono
|
||||
|
||||
## Links
|
||||
|
||||
[Hash Delete](hashDelete) |
|
||||
[Hash Delete Field](hashDeleteField) |
|
||||
[Hash Delete ID](hashDeleteId) |
|
||||
[Hash Get](hashGet) |
|
||||
[Hash Get All](hashGetAll) |
|
||||
[Hash Get All ID](hashGetAllId) |
|
||||
[Hash Get ID](hashGetId) |
|
||||
[Hash Set](hashSet) |
|
||||
[Hash Set Bulk](hashSetBulk) |
|
||||
[Hash Set ID](hashSetId) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk)
|
||||
[Hash Delete](hashDelete.md) |
|
||||
[Hash Delete ID](hashDeleteId.md) |
|
||||
[Hash Get](hashGet.md) |
|
||||
[Hash Get All](hashGetAll.md) |
|
||||
[Hash Get All ID](hashGetAllId.md) |
|
||||
[Hash Get ID](hashGetId.md) |
|
||||
[Hash Remove](hashRemove.md) |
|
||||
[Hash Remove ID](hashRemoveId.md) |
|
||||
[Hash Set](hashSet.md) |
|
||||
[Hash Set Bulk](hashSetBulk.md) |
|
||||
[Hash Set ID](hashSetId.md) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk.md)
|
@ -52,16 +52,15 @@ None. The operation runs synchronously to remove the field.
|
||||
|
||||
## Links
|
||||
|
||||
[Hash Delete](hashDelete) |
|
||||
[Hash Delete Field](hashDeleteField) |
|
||||
[Hash Delete ID](hashDeleteId) |
|
||||
[Hash Get](hashGet) |
|
||||
[Hash Get All](hashGetAll) |
|
||||
[Hash Get All ID](hashGetAllId) |
|
||||
[Hash Get ID](hashGetId) |
|
||||
[Hash Remove](hashRemove) |
|
||||
[Hash Remove ID](hashRemoveId) |
|
||||
[Hash Set](hashSet) |
|
||||
[Hash Set Bulk](hashSetBulk) |
|
||||
[Hash Set ID](hashSetId) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk)
|
||||
[Hash Delete](hashDelete.md) |
|
||||
[Hash Delete ID](hashDeleteId.md) |
|
||||
[Hash Get](hashGet.md) |
|
||||
[Hash Get All](hashGetAll.md) |
|
||||
[Hash Get All ID](hashGetAllId.md) |
|
||||
[Hash Get ID](hashGetId.md) |
|
||||
[Hash Remove](hashRemove.md) |
|
||||
[Hash Remove ID](hashRemoveId.md) |
|
||||
[Hash Set](hashSet.md) |
|
||||
[Hash Set Bulk](hashSetBulk.md) |
|
||||
[Hash Set ID](hashSetId.md) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk.md)
|
@ -57,16 +57,15 @@ None. The operation runs synchronously to remove the field.
|
||||
|
||||
## Links
|
||||
|
||||
[Hash Delete](hashDelete) |
|
||||
[Hash Delete Field](hashDeleteField) |
|
||||
[Hash Delete ID](hashDeleteId) |
|
||||
[Hash Get](hashGet) |
|
||||
[Hash Get All](hashGetAll) |
|
||||
[Hash Get All ID](hashGetAllId) |
|
||||
[Hash Get ID](hashGetId) |
|
||||
[Hash Remove](hashRemove) |
|
||||
[Hash Remove ID](hashRemoveId) |
|
||||
[Hash Set](hashSet) |
|
||||
[Hash Set Bulk](hashSetBulk) |
|
||||
[Hash Set ID](hashSetId) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk)
|
||||
[Hash Delete](hashDelete.md) |
|
||||
[Hash Delete ID](hashDeleteId.md) |
|
||||
[Hash Get](hashGet.md) |
|
||||
[Hash Get All](hashGetAll.md) |
|
||||
[Hash Get All ID](hashGetAllId.md) |
|
||||
[Hash Get ID](hashGetId.md) |
|
||||
[Hash Remove](hashRemove.md) |
|
||||
[Hash Remove ID](hashRemoveId.md) |
|
||||
[Hash Set](hashSet.md) |
|
||||
[Hash Set Bulk](hashSetBulk.md) |
|
||||
[Hash Set ID](hashSetId.md) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk.md)
|
@ -59,14 +59,15 @@ None. The operation runs synchronously to store the data.
|
||||
|
||||
## Links
|
||||
|
||||
[Hash Delete](hashDelete) |
|
||||
[Hash Delete Field](hashDeleteField) |
|
||||
[Hash Delete ID](hashDeleteId) |
|
||||
[Hash Get](hashGet) |
|
||||
[Hash Get All](hashGetAll) |
|
||||
[Hash Get All ID](hashGetAllId) |
|
||||
[Hash Get ID](hashGetId) |
|
||||
[Hash Set](hashSet) |
|
||||
[Hash Set Bulk](hashSetBulk) |
|
||||
[Hash Set ID](hashSetId) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk)
|
||||
[Hash Delete](hashDelete.md) |
|
||||
[Hash Delete ID](hashDeleteId.md) |
|
||||
[Hash Get](hashGet.md) |
|
||||
[Hash Get All](hashGetAll.md) |
|
||||
[Hash Get All ID](hashGetAllId.md) |
|
||||
[Hash Get ID](hashGetId.md) |
|
||||
[Hash Remove](hashRemove.md) |
|
||||
[Hash Remove ID](hashRemoveId.md) |
|
||||
[Hash Set](hashSet.md) |
|
||||
[Hash Set Bulk](hashSetBulk.md) |
|
||||
[Hash Set ID](hashSetId.md) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk.md)
|
@ -59,14 +59,15 @@ None. The operation runs synchronously to store all the data.
|
||||
|
||||
## Links
|
||||
|
||||
[Hash Delete](hashDelete) |
|
||||
[Hash Delete Field](hashDeleteField) |
|
||||
[Hash Delete ID](hashDeleteId) |
|
||||
[Hash Get](hashGet) |
|
||||
[Hash Get All](hashGetAll) |
|
||||
[Hash Get All ID](hashGetAllId) |
|
||||
[Hash Get ID](hashGetId) |
|
||||
[Hash Set](hashSet) |
|
||||
[Hash Set Bulk](hashSetBulk) |
|
||||
[Hash Set ID](hashSetId) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk)
|
||||
[Hash Delete](hashDelete.md) |
|
||||
[Hash Delete ID](hashDeleteId.md) |
|
||||
[Hash Get](hashGet.md) |
|
||||
[Hash Get All](hashGetAll.md) |
|
||||
[Hash Get All ID](hashGetAllId.md) |
|
||||
[Hash Get ID](hashGetId.md) |
|
||||
[Hash Remove](hashRemove.md) |
|
||||
[Hash Remove ID](hashRemoveId.md) |
|
||||
[Hash Set](hashSet.md) |
|
||||
[Hash Set Bulk](hashSetBulk.md) |
|
||||
[Hash Set ID](hashSetId.md) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk.md)
|
@ -60,14 +60,15 @@ None. The operation runs synchronously to store the data.
|
||||
|
||||
## Links
|
||||
|
||||
[Hash Delete](hashDelete) |
|
||||
[Hash Delete Field](hashDeleteField) |
|
||||
[Hash Delete ID](hashDeleteId) |
|
||||
[Hash Get](hashGet) |
|
||||
[Hash Get All](hashGetAll) |
|
||||
[Hash Get All ID](hashGetAllId) |
|
||||
[Hash Get ID](hashGetId) |
|
||||
[Hash Set](hashSet) |
|
||||
[Hash Set Bulk](hashSetBulk) |
|
||||
[Hash Set ID](hashSetId) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk)
|
||||
[Hash Delete](hashDelete.md) |
|
||||
[Hash Delete ID](hashDeleteId.md) |
|
||||
[Hash Get](hashGet.md) |
|
||||
[Hash Get All](hashGetAll.md) |
|
||||
[Hash Get All ID](hashGetAllId.md) |
|
||||
[Hash Get ID](hashGetId.md) |
|
||||
[Hash Remove](hashRemove.md) |
|
||||
[Hash Remove ID](hashRemoveId.md) |
|
||||
[Hash Set](hashSet.md) |
|
||||
[Hash Set Bulk](hashSetBulk.md) |
|
||||
[Hash Set ID](hashSetId.md) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk.md)
|
@ -60,14 +60,15 @@ None. The operation runs synchronously to store all the data.
|
||||
|
||||
## Links
|
||||
|
||||
[Hash Delete](hashDelete) |
|
||||
[Hash Delete Field](hashDeleteField) |
|
||||
[Hash Delete ID](hashDeleteId) |
|
||||
[Hash Get](hashGet) |
|
||||
[Hash Get All](hashGetAll) |
|
||||
[Hash Get All ID](hashGetAllId) |
|
||||
[Hash Get ID](hashGetId) |
|
||||
[Hash Set](hashSet) |
|
||||
[Hash Set Bulk](hashSetBulk) |
|
||||
[Hash Set ID](hashSetId) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk)
|
||||
[Hash Delete](hashDelete.md) |
|
||||
[Hash Delete ID](hashDeleteId.md) |
|
||||
[Hash Get](hashGet.md) |
|
||||
[Hash Get All](hashGetAll.md) |
|
||||
[Hash Get All ID](hashGetAllId.md) |
|
||||
[Hash Get ID](hashGetId.md) |
|
||||
[Hash Remove](hashRemove.md) |
|
||||
[Hash Remove ID](hashRemoveId.md) |
|
||||
[Hash Set](hashSet.md) |
|
||||
[Hash Set Bulk](hashSetBulk.md) |
|
||||
[Hash Set ID](hashSetId.md) |
|
||||
[Hash Set ID Bulk](hashSetIdBulk.md)
|
@ -55,12 +55,13 @@ None. The operation runs synchronously to add the element to the list.
|
||||
- `ramdb_db_fnc_listSet`: Replaces a specific element in a list
|
||||
- `ramdb_db_fnc_listRemove`: Removes a specific element from a list
|
||||
- `ramdb_db_fnc_listDelete`: Deletes an entire list
|
||||
- `ramdb_db_fnc_scheduler`: Processes the callback from the database extension
|
||||
|
||||
## Links
|
||||
|
||||
[List Add](listAdd) |
|
||||
[List Delete](listDelete) |
|
||||
[List Get](listGet) |
|
||||
[List Load](listLoad) |
|
||||
[List Remove](listRemove) |
|
||||
[List Set](listSet)
|
||||
[List Add](listAdd.md) |
|
||||
[List Delete](listDelete.md) |
|
||||
[List Get](listGet.md) |
|
||||
[List Load](listLoad.md) |
|
||||
[List Remove](listRemove.md) |
|
||||
[List Set](listSet.md)
|
@ -54,18 +54,18 @@ None. The operation runs synchronously to delete the list immediately.
|
||||
- All list operations are logged for debugging purposes.
|
||||
|
||||
## Related Functions
|
||||
|
||||
- [ramdb_db_fnc_listAdd](listAdd)
|
||||
- [ramdb_db_fnc_listGet](listGet)
|
||||
- [ramdb_db_fnc_listLoad](listLoad)
|
||||
- [ramdb_db_fnc_listRemove](listRemove)
|
||||
- [ramdb_db_fnc_listSet](listSet)
|
||||
- `ramdb_db_fnc_listAdd`: Adds an element to a list
|
||||
- `ramdb_db_fnc_listGet`: Retrieves a specific element from a list
|
||||
- `ramdb_db_fnc_listLoad`: Retrieves a range of elements from a list
|
||||
- `ramdb_db_fnc_listSet`: Replaces a specific element in a list
|
||||
- `ramdb_db_fnc_listRemove`: Removes a specific element from a list
|
||||
- `ramdb_db_fnc_scheduler`: Processes the callback from the database extension
|
||||
|
||||
## Links
|
||||
|
||||
[List Add](listAdd) |
|
||||
[List Get](listGet) |
|
||||
[List Load](listLoad) |
|
||||
[List Remove](listRemove) |
|
||||
[List Set](listSet) |
|
||||
[List Delete](listDelete)
|
||||
[List Add](listAdd.md) |
|
||||
[List Delete](listDelete.md) |
|
||||
[List Get](listGet.md) |
|
||||
[List Load](listLoad.md) |
|
||||
[List Remove](listRemove.md) |
|
||||
[List Set](listSet.md)
|
||||
|
@ -58,13 +58,14 @@ None. The retrieved data is passed to the specified callback function asynchrono
|
||||
- `ramdb_db_fnc_listLoad`: Retrieves a range of elements from a list
|
||||
- `ramdb_db_fnc_listSet`: Replaces a specific element in a list
|
||||
- `ramdb_db_fnc_listRemove`: Removes a specific element from a list
|
||||
- `ramdb_db_fnc_listDelete`: Deletes an entire list
|
||||
- `ramdb_db_fnc_scheduler`: Processes the callback from the database extension
|
||||
|
||||
## Links
|
||||
|
||||
[List Add](listAdd) |
|
||||
[List Delete](listDelete) |
|
||||
[List Get](listGet) |
|
||||
[List Load](listLoad) |
|
||||
[List Remove](listRemove) |
|
||||
[List Set](listSet)
|
||||
[List Add](listAdd.md) |
|
||||
[List Delete](listDelete.md) |
|
||||
[List Get](listGet.md) |
|
||||
[List Load](listLoad.md) |
|
||||
[List Remove](listRemove.md) |
|
||||
[List Set](listSet.md)
|
@ -57,18 +57,18 @@ No value is returned directly. The retrieved list data is passed to the specifie
|
||||
- All list operations are logged for debugging purposes.
|
||||
|
||||
## Related Functions
|
||||
|
||||
- [ramdb_db_fnc_listAdd](listAdd)
|
||||
- [ramdb_db_fnc_listGet](listGet)
|
||||
- [ramdb_db_fnc_listSet](listSet)
|
||||
- [ramdb_db_fnc_listRemove](listRemove)
|
||||
- [ramdb_db_fnc_listDelete](listDelete)
|
||||
- `ramdb_db_fnc_listAdd`: Adds an element to a list
|
||||
- `ramdb_db_fnc_listGet`: Retrieves a specific element from a list
|
||||
- `ramdb_db_fnc_listSet`: Replaces a specific element in a list
|
||||
- `ramdb_db_fnc_listRemove`: Removes a specific element from a list
|
||||
- `ramdb_db_fnc_listDelete`: Deletes an entire list
|
||||
- `ramdb_db_fnc_scheduler`: Processes the callback from the database extension
|
||||
|
||||
## Links
|
||||
|
||||
[List Add](listAdd) |
|
||||
[List Get](listGet) |
|
||||
[List Load](listLoad) |
|
||||
[List Remove](listRemove) |
|
||||
[List Set](listSet) |
|
||||
[List Delete](listDelete)
|
||||
[List Add](listAdd.md) |
|
||||
[List Delete](listDelete.md) |
|
||||
[List Get](listGet.md) |
|
||||
[List Load](listLoad.md) |
|
||||
[List Remove](listRemove.md) |
|
||||
[List Set](listSet.md)
|
@ -55,18 +55,18 @@ None. The operation runs synchronously to remove the element immediately.
|
||||
- All list operations are logged for debugging purposes.
|
||||
|
||||
## Related Functions
|
||||
|
||||
- [ramdb_db_fnc_listAdd](listAdd)
|
||||
- [ramdb_db_fnc_listGet](listGet)
|
||||
- [ramdb_db_fnc_listLoad](listLoad)
|
||||
- [ramdb_db_fnc_listSet](listSet)
|
||||
- [ramdb_db_fnc_listDelete](listDelete)
|
||||
- `ramdb_db_fnc_listAdd`: Adds an element to a list
|
||||
- `ramdb_db_fnc_listGet`: Retrieves a specific element from a list
|
||||
- `ramdb_db_fnc_listLoad`: Retrieves a range of elements from a list
|
||||
- `ramdb_db_fnc_listSet`: Replaces a specific element in a list
|
||||
- `ramdb_db_fnc_listDelete`: Deletes an entire list
|
||||
- `ramdb_db_fnc_scheduler`: Processes the callback from the database extension
|
||||
|
||||
## Links
|
||||
|
||||
[List Add](listAdd) |
|
||||
[List Get](listGet) |
|
||||
[List Load](listLoad) |
|
||||
[List Remove](listRemove) |
|
||||
[List Set](listSet) |
|
||||
[List Delete](listDelete)
|
||||
[List Add](listAdd.md) |
|
||||
[List Delete](listDelete.md) |
|
||||
[List Get](listGet.md) |
|
||||
[List Load](listLoad.md) |
|
||||
[List Remove](listRemove.md) |
|
||||
[List Set](listSet.md)
|
@ -56,18 +56,18 @@ None. The operation runs synchronously to update the element immediately.
|
||||
- All list operations are logged for debugging purposes.
|
||||
|
||||
## Related Functions
|
||||
|
||||
- [ramdb_db_fnc_listAdd](listAdd)
|
||||
- [ramdb_db_fnc_listGet](listGet)
|
||||
- [ramdb_db_fnc_listLoad](listLoad)
|
||||
- [ramdb_db_fnc_listRemove](listRemove)
|
||||
- [ramdb_db_fnc_listDelete](listDelete)
|
||||
- `ramdb_db_fnc_listAdd`: Adds an element to a list
|
||||
- `ramdb_db_fnc_listGet`: Retrieves a specific element from a list
|
||||
- `ramdb_db_fnc_listLoad`: Retrieves a range of elements from a list
|
||||
- `ramdb_db_fnc_listRemove`: Removes a specific element from a list
|
||||
- `ramdb_db_fnc_listDelete`: Deletes an entire list
|
||||
- `ramdb_db_fnc_scheduler`: Processes the callback from the database extension
|
||||
|
||||
## Links
|
||||
|
||||
[List Add](listAdd) |
|
||||
[List Get](listGet) |
|
||||
[List Load](listLoad) |
|
||||
[List Remove](listRemove) |
|
||||
[List Set](listSet) |
|
||||
[List Delete](listDelete)
|
||||
[List Add](listAdd.md) |
|
||||
[List Delete](listDelete.md) |
|
||||
[List Get](listGet.md) |
|
||||
[List Load](listLoad.md) |
|
||||
[List Remove](listRemove.md) |
|
||||
[List Set](listSet.md)
|
Loading…
x
Reference in New Issue
Block a user