ramdb/docs/core/index.md
Jacob Schmidt 6d51f2e333 fix: Update documentation for consistency and accuracy
This commit enhances the documentation by ensuring consistency in function references and correcting inaccuracies. Key changes include:

*   Updated function names and references throughout the documentation.
*   Corrected internal links to point to the appropriate markdown files.
*   Removed outdated references to improve clarity and relevance.
2025-03-22 20:05:28 -05:00

29 lines
875 B
Markdown

# Core Functions
This section contains documentation for the core functions of ArmaRAMDb that handle initialization, process management, and scheduling.
## Available Functions
- [addTask](addTask.md) - Add a task to the scheduler
- [handler](handler.md) - Handle callbacks from the extension
- [init](init.md) - Initialize the database system
- [printAddonName](printAddonName.md) - Print the addon name
- [processQueue](processQueue.md) - Process queued database operations
- [scheduler](scheduler.md) - Schedule database operations
- [test](test.md) - Test the database connection
## Example Usage
```sqf
// Initialize the database
[] call ramdb_db_fnc_init;
// Test the database connection
[] call ramdb_db_fnc_test;
```
## Related Categories
- [Basic Data Operations](../basic/index.md)
- [Hash Operations](../hash/index.md)
- [List Operations](../list/index.md)