MemoryStore¶
This docs was updated at: 2026-02-23
com.paragon.responses.tools.memory.MemoryStore ยท Interface
Interface for memory storage operations.
Methods¶
store¶
Stores a value associated with a key.
Parameters
| Name | Description |
|---|---|
key |
The key to store |
value |
The value to store |
Returns
A message indicating the result of the operation
retrieve¶
Retrieves a value associated with a key.
Parameters
| Name | Description |
|---|---|
key |
The key to retrieve |
Returns
The value, or null if not found
delete¶
Deletes a value associated with a key.
Parameters
| Name | Description |
|---|---|
key |
The key to delete |
Returns
A message indicating the result of the operation