Update docs/README.md

This commit is contained in:
Jacob Schmidt 2025-03-22 20:15:35 -05:00
parent 9570326406
commit ddb137b754

View File

@ -6,7 +6,7 @@ This documentation provides details on all functions available in `ArmaRAMDb`. T
The functions are categorized by their purpose: The functions are categorized by their purpose:
### Core Functions ### [Core Functions](core/README.md)
- [init](core/init.md) - Initialize the database system - [init](core/init.md) - Initialize the database system
- [handler](core/handler.md) - Handle callbacks from the extension - [handler](core/handler.md) - Handle callbacks from the extension
- [processQueue](core/processQueue.md) - Process queued database operations - [processQueue](core/processQueue.md) - Process queued database operations
@ -15,7 +15,7 @@ The functions are categorized by their purpose:
- [printAddonName](core/printAddonName.md) - Print the addon name - [printAddonName](core/printAddonName.md) - Print the addon name
- [test](core/test.md) - Test the database connection - [test](core/test.md) - Test the database connection
### Basic Data Operations ### [Basic Data Operations](basic/README.md)
- [get](basic/get.md) - Get a value from the database - [get](basic/get.md) - Get a value from the database
- [set](basic/set.md) - Set a value in the database - [set](basic/set.md) - Set a value in the database
- [delete](basic/delete.md) - Delete a value from the database - [delete](basic/delete.md) - Delete a value from the database
@ -23,7 +23,7 @@ The functions are categorized by their purpose:
- [load](basic/load.md) - Load the database from disk - [load](basic/load.md) - Load the database from disk
- [fetch](basic/fetch.md) - Fetch a value from the database - [fetch](basic/fetch.md) - Fetch a value from the database
### Hash Operations ### [Hash Operations](hash/README.md)
- [hashDelete](hash/hashDelete.md) - Delete a hash - [hashDelete](hash/hashDelete.md) - Delete a hash
- [hashDeleteId](hash/hashDeleteId.md) - Delete a hash for a specific ID - [hashDeleteId](hash/hashDeleteId.md) - Delete a hash for a specific ID
- [hashGet](hash/hashGet.md) - Get a field from a hash - [hashGet](hash/hashGet.md) - Get a field from a hash
@ -37,7 +37,7 @@ The functions are categorized by their purpose:
- [hashSetId](hash/hashSetId.md) - Set a field in a hash for a specific ID - [hashSetId](hash/hashSetId.md) - Set a field in a hash for a specific ID
- [hashSetIdBulk](hash/hashSetIdBulk.md) - Set multiple fields in a hash for a specific ID in one operation - [hashSetIdBulk](hash/hashSetIdBulk.md) - Set multiple fields in a hash for a specific ID in one operation
### List Operations ### [List Operations](list/README.md)
- [listAdd](list/listAdd.md) - Add an item to a list - [listAdd](list/listAdd.md) - Add an item to a list
- [listDelete](list/listDelete.md) - Delete a list - [listDelete](list/listDelete.md) - Delete a list
- [listGet](list/listGet.md) - Get items from a list - [listGet](list/listGet.md) - Get items from a list