docs: Update documentation links and function references

This commit updates the documentation to reflect the current function names and link structure. Specifically, it addresses the following:

*   Corrected internal links within the documentation to point to the correct markdown files (e.g., `hashDelete.md` instead of `hashDelete`).
*   Updated related function references to reflect the current function names and include missing functions.
*   Removed outdated function references.
*   Added `ramdb_db_fnc_scheduler` to related functions where appropriate.
*   Updated the links section to use the correct markdown file names.
This commit is contained in:
Jacob Schmidt 2025-03-22 16:53:30 -05:00
parent 5b9f3402b6
commit 8c0e8144e5
30 changed files with 270 additions and 259 deletions

View File

@ -41,9 +41,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_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) | [Delete Key](delete.md) |
[Get Key](get) | [Get Key](get.md) |
[Set Key](set) [Set Key](set.md)

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) | [Delete Key](delete.md) |
[Get Key](get) | [Get Key](get.md) |
[Set Key](set) [Set Key](set.md)

View File

@ -40,9 +40,8 @@ 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) | [Save DB](save.md) |
[Load DB](load) [Load DB](load.md)

View File

@ -47,10 +47,8 @@ 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) | [Save DB](save.md) |
[Load DB](load) [Load DB](load.md)

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_hashSet`: Stores a value in a hash table for more structured data - `ramdb_db_fnc_scheduler`: Processes the callback response
## Links ## Links
[Delete Key](delete) | [Delete Key](delete.md) |
[Get Key](get) | [Get Key](get.md) |
[Set Key](set) [Set Key](set.md)

View File

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

View File

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

View File

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

View File

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

View File

@ -53,9 +53,10 @@ The same value that was passed to the function. Also sets the global variable `r
## Links ## Links
[Add Task](addtask) | [Add Task](addtask.md) |
[Handler](handler) | [Handler](handler.md) |
[Init](init) | [Init](init.md) |
[Process Queue](processqueue) | [Print Addon Name](printaddonname.md) |
[Scheduler](scheduler) | [Process Queue](processqueue.md) |
[Test](test) [Scheduler](scheduler.md) |
[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) | [Hash Delete](hashDelete.md) |
[Hash Delete Field](hashDeleteField) | [Hash Delete ID](hashDeleteId.md) |
[Hash Delete ID](hashDeleteId) | [Hash Get](hashGet.md) |
[Hash Get](hashGet) | [Hash Get All](hashGetAll.md) |
[Hash Get All](hashGetAll) | [Hash Get All ID](hashGetAllId.md) |
[Hash Get All ID](hashGetAllId) | [Hash Get ID](hashGetId.md) |
[Hash Get ID](hashGetId) | [Hash Remove](hashRemove.md) |
[Hash Set](hashSet) | [Hash Remove ID](hashRemoveId.md) |
[Hash Set Bulk](hashSetBulk) | [Hash Set](hashSet.md) |
[Hash Set ID](hashSetId) | [Hash Set Bulk](hashSetBulk.md) |
[Hash Set ID Bulk](hashSetIdBulk) [Hash Set ID](hashSetId.md) |
[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) | [Hash Delete](hashDelete.md) |
[Hash Delete Field](hashDeleteField) | [Hash Delete ID](hashDeleteId.md) |
[Hash Delete ID](hashDeleteId) | [Hash Get](hashGet.md) |
[Hash Get](hashGet) | [Hash Get All](hashGetAll.md) |
[Hash Get All](hashGetAll) | [Hash Get All ID](hashGetAllId.md) |
[Hash Get All ID](hashGetAllId) | [Hash Get ID](hashGetId.md) |
[Hash Get ID](hashGetId) | [Hash Remove](hashRemove.md) |
[Hash Set](hashSet) | [Hash Remove ID](hashRemoveId.md) |
[Hash Set Bulk](hashSetBulk) | [Hash Set](hashSet.md) |
[Hash Set ID](hashSetId) | [Hash Set Bulk](hashSetBulk.md) |
[Hash Set ID Bulk](hashSetIdBulk) [Hash Set ID](hashSetId.md) |
[Hash Set ID Bulk](hashSetIdBulk.md)

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -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_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) | [List Add](listAdd.md) |
[List Delete](listDelete) | [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)

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_listAdd](listAdd) - `ramdb_db_fnc_listGet`: Retrieves a specific element from a list
- [ramdb_db_fnc_listGet](listGet) - `ramdb_db_fnc_listLoad`: Retrieves a range of elements from a list
- [ramdb_db_fnc_listLoad](listLoad) - `ramdb_db_fnc_listSet`: Replaces a specific element in a list
- [ramdb_db_fnc_listRemove](listRemove) - `ramdb_db_fnc_listRemove`: Removes a specific element from a list
- [ramdb_db_fnc_listSet](listSet) - `ramdb_db_fnc_scheduler`: Processes the callback from the database extension
## Links ## Links
[List Add](listAdd) | [List Add](listAdd.md) |
[List Get](listGet) | [List Delete](listDelete.md) |
[List Load](listLoad) | [List Get](listGet.md) |
[List Remove](listRemove) | [List Load](listLoad.md) |
[List Set](listSet) | [List Remove](listRemove.md) |
[List Delete](listDelete) [List Set](listSet.md)

View File

@ -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_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) | [List Add](listAdd.md) |
[List Delete](listDelete) | [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)

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_listAdd](listAdd) - `ramdb_db_fnc_listGet`: Retrieves a specific element from a list
- [ramdb_db_fnc_listGet](listGet) - `ramdb_db_fnc_listSet`: Replaces a specific element in a list
- [ramdb_db_fnc_listSet](listSet) - `ramdb_db_fnc_listRemove`: Removes a specific element from a list
- [ramdb_db_fnc_listRemove](listRemove) - `ramdb_db_fnc_listDelete`: Deletes an entire list
- [ramdb_db_fnc_listDelete](listDelete) - `ramdb_db_fnc_scheduler`: Processes the callback from the database extension
## Links ## Links
[List Add](listAdd) | [List Add](listAdd.md) |
[List Get](listGet) | [List Delete](listDelete.md) |
[List Load](listLoad) | [List Get](listGet.md) |
[List Remove](listRemove) | [List Load](listLoad.md) |
[List Set](listSet) | [List Remove](listRemove.md) |
[List Delete](listDelete) [List Set](listSet.md)

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_listAdd](listAdd) - `ramdb_db_fnc_listGet`: Retrieves a specific element from a list
- [ramdb_db_fnc_listGet](listGet) - `ramdb_db_fnc_listLoad`: Retrieves a range of elements from a list
- [ramdb_db_fnc_listLoad](listLoad) - `ramdb_db_fnc_listSet`: Replaces a specific element in a list
- [ramdb_db_fnc_listSet](listSet) - `ramdb_db_fnc_listDelete`: Deletes an entire list
- [ramdb_db_fnc_listDelete](listDelete) - `ramdb_db_fnc_scheduler`: Processes the callback from the database extension
## Links ## Links
[List Add](listAdd) | [List Add](listAdd.md) |
[List Get](listGet) | [List Delete](listDelete.md) |
[List Load](listLoad) | [List Get](listGet.md) |
[List Remove](listRemove) | [List Load](listLoad.md) |
[List Set](listSet) | [List Remove](listRemove.md) |
[List Delete](listDelete) [List Set](listSet.md)

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_listAdd](listAdd) - `ramdb_db_fnc_listGet`: Retrieves a specific element from a list
- [ramdb_db_fnc_listGet](listGet) - `ramdb_db_fnc_listLoad`: Retrieves a range of elements from 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_listDelete`: Deletes an entire list
- [ramdb_db_fnc_listDelete](listDelete) - `ramdb_db_fnc_scheduler`: Processes the callback from the database extension
## Links ## Links
[List Add](listAdd) | [List Add](listAdd.md) |
[List Get](listGet) | [List Delete](listDelete.md) |
[List Load](listLoad) | [List Get](listGet.md) |
[List Remove](listRemove) | [List Load](listLoad.md) |
[List Set](listSet) | [List Remove](listRemove.md) |
[List Delete](listDelete) [List Set](listSet.md)