diff --git a/docs/basic/delete.md b/docs/basic/delete.md index 3e19eaa..0c08cd9 100644 --- a/docs/basic/delete.md +++ b/docs/basic/delete.md @@ -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) \ No newline at end of file +[Delete Key](delete.md) | +[Get Key](get.md) | +[Set Key](set.md) \ No newline at end of file diff --git a/docs/basic/get.md b/docs/basic/get.md index e1adc59..1511665 100644 --- a/docs/basic/get.md +++ b/docs/basic/get.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) \ No newline at end of file +[Delete Key](delete.md) | +[Get Key](get.md) | +[Set Key](set.md) \ No newline at end of file diff --git a/docs/basic/load.md b/docs/basic/load.md index 03f357c..982cbf2 100644 --- a/docs/basic/load.md +++ b/docs/basic/load.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) \ No newline at end of file +[Save DB](save.md) | +[Load DB](load.md) \ No newline at end of file diff --git a/docs/basic/save.md b/docs/basic/save.md index 9b44d81..14d2e99 100644 --- a/docs/basic/save.md +++ b/docs/basic/save.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) \ No newline at end of file +[Save DB](save.md) | +[Load DB](load.md) \ No newline at end of file diff --git a/docs/basic/set.md b/docs/basic/set.md index 0e32449..45456ad 100644 --- a/docs/basic/set.md +++ b/docs/basic/set.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) \ No newline at end of file +[Delete Key](delete.md) | +[Get Key](get.md) | +[Set Key](set.md) \ No newline at end of file diff --git a/docs/core/addTask.md b/docs/core/addTask.md index c82e574..37adf55 100644 --- a/docs/core/addTask.md +++ b/docs/core/addTask.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) \ No newline at end of file +[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) \ No newline at end of file diff --git a/docs/core/handler.md b/docs/core/handler.md index 633faeb..5fa7ffb 100644 --- a/docs/core/handler.md +++ b/docs/core/handler.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) \ No newline at end of file +[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) \ No newline at end of file diff --git a/docs/core/init.md b/docs/core/init.md index 93c6d4b..0c8fb7e 100644 --- a/docs/core/init.md +++ b/docs/core/init.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) \ No newline at end of file +[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) \ No newline at end of file diff --git a/docs/core/printAddonName.md b/docs/core/printAddonName.md index 36abf59..15baaec 100644 --- a/docs/core/printAddonName.md +++ b/docs/core/printAddonName.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) \ No newline at end of file diff --git a/docs/core/processQueue.md b/docs/core/processQueue.md index b75551b..2c2209b 100644 --- a/docs/core/processQueue.md +++ b/docs/core/processQueue.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) \ No newline at end of file +[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) \ No newline at end of file diff --git a/docs/core/scheduler.md b/docs/core/scheduler.md index 4be6597..acc550a 100644 --- a/docs/core/scheduler.md +++ b/docs/core/scheduler.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) \ No newline at end of file +[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) \ No newline at end of file diff --git a/docs/core/test.md b/docs/core/test.md index 2a1be55..2e54152 100644 --- a/docs/core/test.md +++ b/docs/core/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) \ No newline at end of file +[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) \ No newline at end of file diff --git a/docs/hash/hashDelete.md b/docs/hash/hashDelete.md index f1689c7..94fcffe 100644 --- a/docs/hash/hashDelete.md +++ b/docs/hash/hashDelete.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) \ No newline at end of file diff --git a/docs/hash/hashDeleteId.md b/docs/hash/hashDeleteId.md index 5510dc8..410fe17 100644 --- a/docs/hash/hashDeleteId.md +++ b/docs/hash/hashDeleteId.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) \ No newline at end of file diff --git a/docs/hash/hashGet.md b/docs/hash/hashGet.md index 1db52c6..c47ce7e 100644 --- a/docs/hash/hashGet.md +++ b/docs/hash/hashGet.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) \ No newline at end of file +[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) \ No newline at end of file diff --git a/docs/hash/hashGetAll.md b/docs/hash/hashGetAll.md index 06fcebd..d373783 100644 --- a/docs/hash/hashGetAll.md +++ b/docs/hash/hashGetAll.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) \ No newline at end of file +[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) \ No newline at end of file diff --git a/docs/hash/hashGetAllId.md b/docs/hash/hashGetAllId.md index 9e4dacf..69f28b6 100644 --- a/docs/hash/hashGetAllId.md +++ b/docs/hash/hashGetAllId.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) \ No newline at end of file +[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) \ No newline at end of file diff --git a/docs/hash/hashGetId.md b/docs/hash/hashGetId.md index c7bdbfd..1bc037b 100644 --- a/docs/hash/hashGetId.md +++ b/docs/hash/hashGetId.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) \ No newline at end of file +[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) \ No newline at end of file diff --git a/docs/hash/hashRemove.md b/docs/hash/hashRemove.md index 017b1f4..f0206e1 100644 --- a/docs/hash/hashRemove.md +++ b/docs/hash/hashRemove.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) \ No newline at end of file diff --git a/docs/hash/hashRemoveId.md b/docs/hash/hashRemoveId.md index 0ce83b6..43082a5 100644 --- a/docs/hash/hashRemoveId.md +++ b/docs/hash/hashRemoveId.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) \ No newline at end of file diff --git a/docs/hash/hashSet.md b/docs/hash/hashSet.md index ed17ff0..0921106 100644 --- a/docs/hash/hashSet.md +++ b/docs/hash/hashSet.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) \ No newline at end of file +[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) \ No newline at end of file diff --git a/docs/hash/hashSetBulk.md b/docs/hash/hashSetBulk.md index 892a0ca..6c8d4c8 100644 --- a/docs/hash/hashSetBulk.md +++ b/docs/hash/hashSetBulk.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) \ No newline at end of file +[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) \ No newline at end of file diff --git a/docs/hash/hashSetId.md b/docs/hash/hashSetId.md index f36ccdc..ee597f4 100644 --- a/docs/hash/hashSetId.md +++ b/docs/hash/hashSetId.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) \ No newline at end of file +[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) \ No newline at end of file diff --git a/docs/hash/hashSetIdBulk.md b/docs/hash/hashSetIdBulk.md index fdf5b77..0bd8b7b 100644 --- a/docs/hash/hashSetIdBulk.md +++ b/docs/hash/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) \ No newline at end of file +[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) \ No newline at end of file diff --git a/docs/list/listAdd.md b/docs/list/listAdd.md index 29fe217..349a4c7 100644 --- a/docs/list/listAdd.md +++ b/docs/list/listAdd.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) \ No newline at end of file +[List Add](listAdd.md) | +[List Delete](listDelete.md) | +[List Get](listGet.md) | +[List Load](listLoad.md) | +[List Remove](listRemove.md) | +[List Set](listSet.md) \ No newline at end of file diff --git a/docs/list/listDelete.md b/docs/list/listDelete.md index 23b937b..f2c00ed 100644 --- a/docs/list/listDelete.md +++ b/docs/list/listDelete.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) diff --git a/docs/list/listGet.md b/docs/list/listGet.md index 718d0e2..8598dd3 100644 --- a/docs/list/listGet.md +++ b/docs/list/listGet.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) \ No newline at end of file +[List Add](listAdd.md) | +[List Delete](listDelete.md) | +[List Get](listGet.md) | +[List Load](listLoad.md) | +[List Remove](listRemove.md) | +[List Set](listSet.md) \ No newline at end of file diff --git a/docs/list/listLoad.md b/docs/list/listLoad.md index aec665c..d10f239 100644 --- a/docs/list/listLoad.md +++ b/docs/list/listLoad.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) \ No newline at end of file +[List Add](listAdd.md) | +[List Delete](listDelete.md) | +[List Get](listGet.md) | +[List Load](listLoad.md) | +[List Remove](listRemove.md) | +[List Set](listSet.md) \ No newline at end of file diff --git a/docs/list/listRemove.md b/docs/list/listRemove.md index 8b946f4..256189d 100644 --- a/docs/list/listRemove.md +++ b/docs/list/listRemove.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) \ No newline at end of file +[List Add](listAdd.md) | +[List Delete](listDelete.md) | +[List Get](listGet.md) | +[List Load](listLoad.md) | +[List Remove](listRemove.md) | +[List Set](listSet.md) \ No newline at end of file diff --git a/docs/list/listSet.md b/docs/list/listSet.md index a4d2a75..9d4e462 100644 --- a/docs/list/listSet.md +++ b/docs/list/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) \ No newline at end of file +[List Add](listAdd.md) | +[List Delete](listDelete.md) | +[List Get](listGet.md) | +[List Load](listLoad.md) | +[List Remove](listRemove.md) | +[List Set](listSet.md) \ No newline at end of file