📒 docs: Update docs for State Management (#3388)

Update docs for State Management
pull/3389/head
Juan Calderon-Perez 2025-04-01 08:31:29 -04:00 committed by GitHub
parent c5c7f86d85
commit d7e6413aa9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 4 deletions

View File

@ -1,8 +1,10 @@
# State Management
---
id: state
title: 🗂️ State Management
sidebar_position: 8
---
This document details the state management functionality provided by Fiber, a thread-safe global keyvalue store used to store application dependencies and runtime data. The implementation is based on Go's `sync.Map`, ensuring concurrency safety.
Below is the detailed description of all public methods and usage examples.
The State Management provides a global keyvalue store for managing application dependencies and runtime data. This store is shared across the entire application and remains consistent between requests. It is implemented using Gos `sync.Map` to ensure safe concurrent access.
## State Type