Compare commits

..

No commits in common. "90bcfb28a14ba61de4df284cd9feb5fa7022d0aa" and "e8fb80fb9b7e512ffd419c0bf8ae5851945931c4" have entirely different histories.

30 changed files with 259 additions and 270 deletions

View File

@ -41,10 +41,9 @@ None. The operation runs asynchronously.
## Related Functions ## Related Functions
- `ramdb_db_fnc_get`: Retrieves a value by key - `ramdb_db_fnc_get`: Retrieves a value by key
- `ramdb_db_fnc_set`: Stores a value by key - `ramdb_db_fnc_set`: Stores a value by key
- `ramdb_db_fnc_scheduler`: Processes the callback response
## Links ## Links
[Delete Key](delete.md) | [Delete Key](delete) |
[Get Key](get.md) | [Get Key](get) |
[Set Key](set.md) [Set Key](set)

View File

@ -50,6 +50,6 @@ None. When data is retrieved, it will be passed to the specified function. The o
## Links ## Links
[Delete Key](delete.md) | [Delete Key](delete) |
[Get Key](get.md) | [Get Key](get) |
[Set Key](set.md) [Set Key](set)

View File

@ -40,8 +40,9 @@ None. The operation runs synchronously and loads the database immediately.
## Related Functions ## Related Functions
- `ramdb_db_fnc_save`: Saves the database to disk - `ramdb_db_fnc_save`: Saves the database to disk
- `ramdb_db_fnc_isLoaded`: Checks if the database has been loaded
## Links ## Links
[Save DB](save.md) | [Save DB](save) |
[Load DB](load.md) [Load DB](load)

View File

@ -47,8 +47,10 @@ None. The operation runs synchronously and saves the database immediately.
## Related Functions ## Related Functions
- `ramdb_db_fnc_load`: Loads the database from disk - `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 ## Links
[Save DB](save.md) | [Save DB](save) |
[Load DB](load.md) [Load DB](load)

View File

@ -49,10 +49,10 @@ None. The operation runs asynchronously.
## Related Functions ## Related Functions
- `ramdb_db_fnc_get`: Retrieves a value by key - `ramdb_db_fnc_get`: Retrieves a value by key
- `ramdb_db_fnc_delete`: Removes a value by key - `ramdb_db_fnc_delete`: Removes a value by key
- `ramdb_db_fnc_scheduler`: Processes the callback response - `ramdb_db_fnc_hashSet`: Stores a value in a hash table for more structured data
## Links ## Links
[Delete Key](delete.md) | [Delete Key](delete) |
[Get Key](get.md) | [Get Key](get) |
[Set Key](set.md) [Set Key](set)

View File

@ -59,10 +59,9 @@ None. The task is added to the queue and processed asynchronously.
## Links ## Links
[Add Task](addtask.md) | [Add Task](addtask) |
[Handler](handler.md) | [Handler](handler) |
[Init](init.md) | [Init](init) |
[Print Addon Name](printaddonname.md) | [Process Queue](processqueue) |
[Process Queue](processqueue.md) | [Scheduler](scheduler) |
[Scheduler](scheduler.md) | [Test](test)
[Test](test.md)

View File

@ -56,10 +56,9 @@ None. The data is passed to the specified function for processing.
## Links ## Links
[Add Task](addtask.md) | [Add Task](addtask) |
[Handler](handler.md) | [Handler](handler) |
[Init](init.md) | [Init](init) |
[Print Addon Name](printaddonname.md) | [Process Queue](processqueue) |
[Process Queue](processqueue.md) | [Scheduler](scheduler) |
[Scheduler](scheduler.md) | [Test](test)
[Test](test.md)

View File

@ -34,13 +34,13 @@ This function is automatically executed during framework initialization and does
## Related Functions ## Related Functions
- `ramdb_db_fnc_load`: Loads database data from disk - `ramdb_db_fnc_load`: Loads database data from disk
- `ramdb_db_fnc_save`: Saves database data to disk - `ramdb_db_fnc_save`: Saves database data to disk
- `ramdb_db_fnc_isLoaded`: Checks if the database has been loaded
## Links ## Links
[Add Task](addtask.md) | [Add Task](addtask) |
[Handler](handler.md) | [Handler](handler) |
[Init](init.md) | [Init](init) |
[Print Addon Name](printaddonname.md) | [Process Queue](processqueue) |
[Process Queue](processqueue.md) | [Scheduler](scheduler) |
[Scheduler](scheduler.md) | [Test](test)
[Test](test.md)

View File

@ -41,13 +41,13 @@ if (isServer) then {
## Related Functions ## Related Functions
- `ramdb_db_fnc_init`: Initializes the database system - `ramdb_db_fnc_init`: Initializes the database system
- `ramdb_db_fnc_isLoaded`: Checks if the database is loaded
## Links ## Links
[Add Task](addtask.md) | [Add Task](addtask) |
[Handler](handler.md) | [Handler](handler) |
[Init](init.md) | [Init](init) |
[Print Addon Name](printaddonname.md) | [Process Queue](processqueue) |
[Process Queue](processqueue.md) | [Scheduler](scheduler) |
[Scheduler](scheduler.md) | [Test](test)
[Test](test.md)

View File

@ -49,10 +49,9 @@ None. The function processes tasks in the queue and updates the processing state
## Links ## Links
[Add Task](addtask.md) | [Add Task](addtask) |
[Handler](handler.md) | [Handler](handler) |
[Init](init.md) | [Init](init) |
[Print Addon Name](printaddonname.md) | [Process Queue](processqueue) |
[Process Queue](processqueue.md) | [Scheduler](scheduler) |
[Scheduler](scheduler.md) | [Test](test)
[Test](test.md)

View File

@ -49,10 +49,9 @@ None. The function registers the task ID in a hashmap for later processing.
## Links ## Links
[Add Task](addtask.md) | [Add Task](addtask) |
[Handler](handler.md) | [Handler](handler) |
[Init](init.md) | [Init](init) |
[Print Addon Name](printaddonname.md) | [Process Queue](processqueue) |
[Process Queue](processqueue.md) | [Scheduler](scheduler) |
[Scheduler](scheduler.md) | [Test](test)
[Test](test.md)

View File

@ -53,10 +53,9 @@ The same value that was passed to the function. Also sets the global variable `r
## Links ## Links
[Add Task](addtask.md) | [Add Task](addtask) |
[Handler](handler.md) | [Handler](handler) |
[Init](init.md) | [Init](init) |
[Print Addon Name](printaddonname.md) | [Process Queue](processqueue) |
[Process Queue](processqueue.md) | [Scheduler](scheduler) |
[Scheduler](scheduler.md) | [Test](test)
[Test](test.md)

View File

@ -42,20 +42,20 @@ None. The operation runs synchronously to delete the hash table for the current
## Related Functions ## Related Functions
- `ramdb_db_fnc_hashDeleteId`: Removes a specific hash ID (when you need to specify the ID) - `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_hashSet`: Sets a value in the hash table
- `ramdb_db_fnc_hashGet`: Retrieves a value from the hash table - `ramdb_db_fnc_hashGet`: Retrieves a value from the hash table
## Links ## Links
[Hash Delete](hashDelete.md) | [Hash Delete](hashDelete) |
[Hash Delete ID](hashDeleteId.md) | [Hash Delete Field](hashDeleteField) |
[Hash Get](hashGet.md) | [Hash Delete ID](hashDeleteId) |
[Hash Get All](hashGetAll.md) | [Hash Get](hashGet) |
[Hash Get All ID](hashGetAllId.md) | [Hash Get All](hashGetAll) |
[Hash Get ID](hashGetId.md) | [Hash Get All ID](hashGetAllId) |
[Hash Remove](hashRemove.md) | [Hash Get ID](hashGetId) |
[Hash Remove ID](hashRemoveId.md) | [Hash Set](hashSet) |
[Hash Set](hashSet.md) | [Hash Set Bulk](hashSetBulk) |
[Hash Set Bulk](hashSetBulk.md) | [Hash Set ID](hashSetId) |
[Hash Set ID](hashSetId.md) | [Hash Set ID Bulk](hashSetIdBulk)
[Hash Set ID Bulk](hashSetIdBulk.md)

View File

@ -49,21 +49,21 @@ None. The operation runs synchronously to delete the specified hash table.
## Related Functions ## Related Functions
- `ramdb_db_fnc_hashDelete`: Removes all hash tables - `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_hashSetId`: Sets a value in a specific hash table
- `ramdb_db_fnc_hashGetId`: Retrieves a value from 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 - `ramdb_db_fnc_hashGetAllId`: Retrieves all fields from a specific hash table
## Links ## Links
[Hash Delete](hashDelete.md) | [Hash Delete](hashDelete) |
[Hash Delete ID](hashDeleteId.md) | [Hash Delete Field](hashDeleteField) |
[Hash Get](hashGet.md) | [Hash Delete ID](hashDeleteId) |
[Hash Get All](hashGetAll.md) | [Hash Get](hashGet) |
[Hash Get All ID](hashGetAllId.md) | [Hash Get All](hashGetAll) |
[Hash Get ID](hashGetId.md) | [Hash Get All ID](hashGetAllId) |
[Hash Remove](hashRemove.md) | [Hash Get ID](hashGetId) |
[Hash Remove ID](hashRemoveId.md) | [Hash Set](hashSet) |
[Hash Set](hashSet.md) | [Hash Set Bulk](hashSetBulk) |
[Hash Set Bulk](hashSetBulk.md) | [Hash Set ID](hashSetId) |
[Hash Set ID](hashSetId.md) | [Hash Set ID Bulk](hashSetIdBulk)
[Hash Set ID Bulk](hashSetIdBulk.md)

View File

@ -61,15 +61,14 @@ None. The retrieved data is passed to the specified callback function asynchrono
## Links ## Links
[Hash Delete](hashDelete.md) | [Hash Delete](hashDelete) |
[Hash Delete ID](hashDeleteId.md) | [Hash Delete Field](hashDeleteField) |
[Hash Get](hashGet.md) | [Hash Delete ID](hashDeleteId) |
[Hash Get All](hashGetAll.md) | [Hash Get](hashGet) |
[Hash Get All ID](hashGetAllId.md) | [Hash Get All](hashGetAll) |
[Hash Get ID](hashGetId.md) | [Hash Get All ID](hashGetAllId) |
[Hash Remove](hashRemove.md) | [Hash Get ID](hashGetId) |
[Hash Remove ID](hashRemoveId.md) | [Hash Set](hashSet) |
[Hash Set](hashSet.md) | [Hash Set Bulk](hashSetBulk) |
[Hash Set Bulk](hashSetBulk.md) | [Hash Set ID](hashSetId) |
[Hash Set ID](hashSetId.md) | [Hash Set ID Bulk](hashSetIdBulk)
[Hash Set ID Bulk](hashSetIdBulk.md)

View File

@ -60,15 +60,14 @@ None. The retrieved data is passed to the specified callback function asynchrono
## Links ## Links
[Hash Delete](hashDelete.md) | [Hash Delete](hashDelete) |
[Hash Delete ID](hashDeleteId.md) | [Hash Delete Field](hashDeleteField) |
[Hash Get](hashGet.md) | [Hash Delete ID](hashDeleteId) |
[Hash Get All](hashGetAll.md) | [Hash Get](hashGet) |
[Hash Get All ID](hashGetAllId.md) | [Hash Get All](hashGetAll) |
[Hash Get ID](hashGetId.md) | [Hash Get All ID](hashGetAllId) |
[Hash Remove](hashRemove.md) | [Hash Get ID](hashGetId) |
[Hash Remove ID](hashRemoveId.md) | [Hash Set](hashSet) |
[Hash Set](hashSet.md) | [Hash Set Bulk](hashSetBulk) |
[Hash Set Bulk](hashSetBulk.md) | [Hash Set ID](hashSetId) |
[Hash Set ID](hashSetId.md) | [Hash Set ID Bulk](hashSetIdBulk)
[Hash Set ID Bulk](hashSetIdBulk.md)

View File

@ -61,15 +61,14 @@ None. The retrieved data is passed to the specified callback function asynchrono
## Links ## Links
[Hash Delete](hashDelete.md) | [Hash Delete](hashDelete) |
[Hash Delete ID](hashDeleteId.md) | [Hash Delete Field](hashDeleteField) |
[Hash Get](hashGet.md) | [Hash Delete ID](hashDeleteId) |
[Hash Get All](hashGetAll.md) | [Hash Get](hashGet) |
[Hash Get All ID](hashGetAllId.md) | [Hash Get All](hashGetAll) |
[Hash Get ID](hashGetId.md) | [Hash Get All ID](hashGetAllId) |
[Hash Remove](hashRemove.md) | [Hash Get ID](hashGetId) |
[Hash Remove ID](hashRemoveId.md) | [Hash Set](hashSet) |
[Hash Set](hashSet.md) | [Hash Set Bulk](hashSetBulk) |
[Hash Set Bulk](hashSetBulk.md) | [Hash Set ID](hashSetId) |
[Hash Set ID](hashSetId.md) | [Hash Set ID Bulk](hashSetIdBulk)
[Hash Set ID Bulk](hashSetIdBulk.md)

View File

@ -62,15 +62,14 @@ None. The retrieved data is passed to the specified callback function asynchrono
## Links ## Links
[Hash Delete](hashDelete.md) | [Hash Delete](hashDelete) |
[Hash Delete ID](hashDeleteId.md) | [Hash Delete Field](hashDeleteField) |
[Hash Get](hashGet.md) | [Hash Delete ID](hashDeleteId) |
[Hash Get All](hashGetAll.md) | [Hash Get](hashGet) |
[Hash Get All ID](hashGetAllId.md) | [Hash Get All](hashGetAll) |
[Hash Get ID](hashGetId.md) | [Hash Get All ID](hashGetAllId) |
[Hash Remove](hashRemove.md) | [Hash Get ID](hashGetId) |
[Hash Remove ID](hashRemoveId.md) | [Hash Set](hashSet) |
[Hash Set](hashSet.md) | [Hash Set Bulk](hashSetBulk) |
[Hash Set Bulk](hashSetBulk.md) | [Hash Set ID](hashSetId) |
[Hash Set ID](hashSetId.md) | [Hash Set ID Bulk](hashSetIdBulk)
[Hash Set ID Bulk](hashSetIdBulk.md)

View File

@ -52,15 +52,16 @@ None. The operation runs synchronously to remove the field.
## Links ## Links
[Hash Delete](hashDelete.md) | [Hash Delete](hashDelete) |
[Hash Delete ID](hashDeleteId.md) | [Hash Delete Field](hashDeleteField) |
[Hash Get](hashGet.md) | [Hash Delete ID](hashDeleteId) |
[Hash Get All](hashGetAll.md) | [Hash Get](hashGet) |
[Hash Get All ID](hashGetAllId.md) | [Hash Get All](hashGetAll) |
[Hash Get ID](hashGetId.md) | [Hash Get All ID](hashGetAllId) |
[Hash Remove](hashRemove.md) | [Hash Get ID](hashGetId) |
[Hash Remove ID](hashRemoveId.md) | [Hash Remove](hashRemove) |
[Hash Set](hashSet.md) | [Hash Remove ID](hashRemoveId) |
[Hash Set Bulk](hashSetBulk.md) | [Hash Set](hashSet) |
[Hash Set ID](hashSetId.md) | [Hash Set Bulk](hashSetBulk) |
[Hash Set ID Bulk](hashSetIdBulk.md) [Hash Set ID](hashSetId) |
[Hash Set ID Bulk](hashSetIdBulk)

View File

@ -57,15 +57,16 @@ None. The operation runs synchronously to remove the field.
## Links ## Links
[Hash Delete](hashDelete.md) | [Hash Delete](hashDelete) |
[Hash Delete ID](hashDeleteId.md) | [Hash Delete Field](hashDeleteField) |
[Hash Get](hashGet.md) | [Hash Delete ID](hashDeleteId) |
[Hash Get All](hashGetAll.md) | [Hash Get](hashGet) |
[Hash Get All ID](hashGetAllId.md) | [Hash Get All](hashGetAll) |
[Hash Get ID](hashGetId.md) | [Hash Get All ID](hashGetAllId) |
[Hash Remove](hashRemove.md) | [Hash Get ID](hashGetId) |
[Hash Remove ID](hashRemoveId.md) | [Hash Remove](hashRemove) |
[Hash Set](hashSet.md) | [Hash Remove ID](hashRemoveId) |
[Hash Set Bulk](hashSetBulk.md) | [Hash Set](hashSet) |
[Hash Set ID](hashSetId.md) | [Hash Set Bulk](hashSetBulk) |
[Hash Set ID Bulk](hashSetIdBulk.md) [Hash Set ID](hashSetId) |
[Hash Set ID Bulk](hashSetIdBulk)

View File

@ -59,15 +59,14 @@ None. The operation runs synchronously to store the data.
## Links ## Links
[Hash Delete](hashDelete.md) | [Hash Delete](hashDelete) |
[Hash Delete ID](hashDeleteId.md) | [Hash Delete Field](hashDeleteField) |
[Hash Get](hashGet.md) | [Hash Delete ID](hashDeleteId) |
[Hash Get All](hashGetAll.md) | [Hash Get](hashGet) |
[Hash Get All ID](hashGetAllId.md) | [Hash Get All](hashGetAll) |
[Hash Get ID](hashGetId.md) | [Hash Get All ID](hashGetAllId) |
[Hash Remove](hashRemove.md) | [Hash Get ID](hashGetId) |
[Hash Remove ID](hashRemoveId.md) | [Hash Set](hashSet) |
[Hash Set](hashSet.md) | [Hash Set Bulk](hashSetBulk) |
[Hash Set Bulk](hashSetBulk.md) | [Hash Set ID](hashSetId) |
[Hash Set ID](hashSetId.md) | [Hash Set ID Bulk](hashSetIdBulk)
[Hash Set ID Bulk](hashSetIdBulk.md)

View File

@ -59,15 +59,14 @@ None. The operation runs synchronously to store all the data.
## Links ## Links
[Hash Delete](hashDelete.md) | [Hash Delete](hashDelete) |
[Hash Delete ID](hashDeleteId.md) | [Hash Delete Field](hashDeleteField) |
[Hash Get](hashGet.md) | [Hash Delete ID](hashDeleteId) |
[Hash Get All](hashGetAll.md) | [Hash Get](hashGet) |
[Hash Get All ID](hashGetAllId.md) | [Hash Get All](hashGetAll) |
[Hash Get ID](hashGetId.md) | [Hash Get All ID](hashGetAllId) |
[Hash Remove](hashRemove.md) | [Hash Get ID](hashGetId) |
[Hash Remove ID](hashRemoveId.md) | [Hash Set](hashSet) |
[Hash Set](hashSet.md) | [Hash Set Bulk](hashSetBulk) |
[Hash Set Bulk](hashSetBulk.md) | [Hash Set ID](hashSetId) |
[Hash Set ID](hashSetId.md) | [Hash Set ID Bulk](hashSetIdBulk)
[Hash Set ID Bulk](hashSetIdBulk.md)

View File

@ -60,15 +60,14 @@ None. The operation runs synchronously to store the data.
## Links ## Links
[Hash Delete](hashDelete.md) | [Hash Delete](hashDelete) |
[Hash Delete ID](hashDeleteId.md) | [Hash Delete Field](hashDeleteField) |
[Hash Get](hashGet.md) | [Hash Delete ID](hashDeleteId) |
[Hash Get All](hashGetAll.md) | [Hash Get](hashGet) |
[Hash Get All ID](hashGetAllId.md) | [Hash Get All](hashGetAll) |
[Hash Get ID](hashGetId.md) | [Hash Get All ID](hashGetAllId) |
[Hash Remove](hashRemove.md) | [Hash Get ID](hashGetId) |
[Hash Remove ID](hashRemoveId.md) | [Hash Set](hashSet) |
[Hash Set](hashSet.md) | [Hash Set Bulk](hashSetBulk) |
[Hash Set Bulk](hashSetBulk.md) | [Hash Set ID](hashSetId) |
[Hash Set ID](hashSetId.md) | [Hash Set ID Bulk](hashSetIdBulk)
[Hash Set ID Bulk](hashSetIdBulk.md)

View File

@ -60,15 +60,14 @@ None. The operation runs synchronously to store all the data.
## Links ## Links
[Hash Delete](hashDelete.md) | [Hash Delete](hashDelete) |
[Hash Delete ID](hashDeleteId.md) | [Hash Delete Field](hashDeleteField) |
[Hash Get](hashGet.md) | [Hash Delete ID](hashDeleteId) |
[Hash Get All](hashGetAll.md) | [Hash Get](hashGet) |
[Hash Get All ID](hashGetAllId.md) | [Hash Get All](hashGetAll) |
[Hash Get ID](hashGetId.md) | [Hash Get All ID](hashGetAllId) |
[Hash Remove](hashRemove.md) | [Hash Get ID](hashGetId) |
[Hash Remove ID](hashRemoveId.md) | [Hash Set](hashSet) |
[Hash Set](hashSet.md) | [Hash Set Bulk](hashSetBulk) |
[Hash Set Bulk](hashSetBulk.md) | [Hash Set ID](hashSetId) |
[Hash Set ID](hashSetId.md) | [Hash Set ID Bulk](hashSetIdBulk)
[Hash Set ID Bulk](hashSetIdBulk.md)

View File

@ -55,13 +55,12 @@ 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_listSet`: Replaces a specific element in a list
- `ramdb_db_fnc_listRemove`: Removes a specific element 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_listDelete`: Deletes an entire list
- `ramdb_db_fnc_scheduler`: Processes the callback from the database extension
## Links ## Links
[List Add](listAdd.md) | [List Add](listAdd) |
[List Delete](listDelete.md) | [List Delete](listDelete) |
[List Get](listGet.md) | [List Get](listGet) |
[List Load](listLoad.md) | [List Load](listLoad) |
[List Remove](listRemove.md) | [List Remove](listRemove) |
[List Set](listSet.md) [List Set](listSet)

View File

@ -54,18 +54,18 @@ None. The operation runs synchronously to delete the list immediately.
- All list operations are logged for debugging purposes. - All list operations are logged for debugging purposes.
## Related Functions ## Related Functions
- `ramdb_db_fnc_listAdd`: Adds an element to a list
- `ramdb_db_fnc_listGet`: Retrieves a specific element from a list - [ramdb_db_fnc_listAdd](listAdd)
- `ramdb_db_fnc_listLoad`: Retrieves a range of elements from a list - [ramdb_db_fnc_listGet](listGet)
- `ramdb_db_fnc_listSet`: Replaces a specific element in a list - [ramdb_db_fnc_listLoad](listLoad)
- `ramdb_db_fnc_listRemove`: Removes a specific element from a list - [ramdb_db_fnc_listRemove](listRemove)
- `ramdb_db_fnc_scheduler`: Processes the callback from the database extension - [ramdb_db_fnc_listSet](listSet)
## Links ## Links
[List Add](listAdd.md) | [List Add](listAdd) |
[List Delete](listDelete.md) | [List Get](listGet) |
[List Get](listGet.md) | [List Load](listLoad) |
[List Load](listLoad.md) | [List Remove](listRemove) |
[List Remove](listRemove.md) | [List Set](listSet) |
[List Set](listSet.md) [List Delete](listDelete)

View File

@ -58,14 +58,13 @@ 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_listLoad`: Retrieves a range of elements from a list
- `ramdb_db_fnc_listSet`: Replaces a specific element in 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_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 - `ramdb_db_fnc_scheduler`: Processes the callback from the database extension
## Links ## Links
[List Add](listAdd.md) | [List Add](listAdd) |
[List Delete](listDelete.md) | [List Delete](listDelete) |
[List Get](listGet.md) | [List Get](listGet) |
[List Load](listLoad.md) | [List Load](listLoad) |
[List Remove](listRemove.md) | [List Remove](listRemove) |
[List Set](listSet.md) [List Set](listSet)

View File

@ -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. - All list operations are logged for debugging purposes.
## Related Functions ## Related Functions
- `ramdb_db_fnc_listAdd`: Adds an element to a list
- `ramdb_db_fnc_listGet`: Retrieves a specific element from a list - [ramdb_db_fnc_listAdd](listAdd)
- `ramdb_db_fnc_listSet`: Replaces a specific element in a list - [ramdb_db_fnc_listGet](listGet)
- `ramdb_db_fnc_listRemove`: Removes a specific element from a list - [ramdb_db_fnc_listSet](listSet)
- `ramdb_db_fnc_listDelete`: Deletes an entire list - [ramdb_db_fnc_listRemove](listRemove)
- `ramdb_db_fnc_scheduler`: Processes the callback from the database extension - [ramdb_db_fnc_listDelete](listDelete)
## Links ## Links
[List Add](listAdd.md) | [List Add](listAdd) |
[List Delete](listDelete.md) | [List Get](listGet) |
[List Get](listGet.md) | [List Load](listLoad) |
[List Load](listLoad.md) | [List Remove](listRemove) |
[List Remove](listRemove.md) | [List Set](listSet) |
[List Set](listSet.md) [List Delete](listDelete)

View File

@ -55,18 +55,18 @@ None. The operation runs synchronously to remove the element immediately.
- All list operations are logged for debugging purposes. - All list operations are logged for debugging purposes.
## Related Functions ## Related Functions
- `ramdb_db_fnc_listAdd`: Adds an element to a list
- `ramdb_db_fnc_listGet`: Retrieves a specific element from a list - [ramdb_db_fnc_listAdd](listAdd)
- `ramdb_db_fnc_listLoad`: Retrieves a range of elements from a list - [ramdb_db_fnc_listGet](listGet)
- `ramdb_db_fnc_listSet`: Replaces a specific element in a list - [ramdb_db_fnc_listLoad](listLoad)
- `ramdb_db_fnc_listDelete`: Deletes an entire list - [ramdb_db_fnc_listSet](listSet)
- `ramdb_db_fnc_scheduler`: Processes the callback from the database extension - [ramdb_db_fnc_listDelete](listDelete)
## Links ## Links
[List Add](listAdd.md) | [List Add](listAdd) |
[List Delete](listDelete.md) | [List Get](listGet) |
[List Get](listGet.md) | [List Load](listLoad) |
[List Load](listLoad.md) | [List Remove](listRemove) |
[List Remove](listRemove.md) | [List Set](listSet) |
[List Set](listSet.md) [List Delete](listDelete)

View File

@ -56,18 +56,18 @@ None. The operation runs synchronously to update the element immediately.
- All list operations are logged for debugging purposes. - All list operations are logged for debugging purposes.
## Related Functions ## Related Functions
- `ramdb_db_fnc_listAdd`: Adds an element to a list
- `ramdb_db_fnc_listGet`: Retrieves a specific element from a list - [ramdb_db_fnc_listAdd](listAdd)
- `ramdb_db_fnc_listLoad`: Retrieves a range of elements from a list - [ramdb_db_fnc_listGet](listGet)
- `ramdb_db_fnc_listRemove`: Removes a specific element from a list - [ramdb_db_fnc_listLoad](listLoad)
- `ramdb_db_fnc_listDelete`: Deletes an entire list - [ramdb_db_fnc_listRemove](listRemove)
- `ramdb_db_fnc_scheduler`: Processes the callback from the database extension - [ramdb_db_fnc_listDelete](listDelete)
## Links ## Links
[List Add](listAdd.md) | [List Add](listAdd) |
[List Delete](listDelete.md) | [List Get](listGet) |
[List Get](listGet.md) | [List Load](listLoad) |
[List Load](listLoad.md) | [List Remove](listRemove) |
[List Remove](listRemove.md) | [List Set](listSet) |
[List Set](listSet.md) [List Delete](listDelete)