mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-14 17:49:11 +02:00
30 lines
831 B
Text
30 lines
831 B
Text
---
|
|
title: cache
|
|
sidebarTitle: cache
|
|
---
|
|
|
|
# `fastmcp.utilities.cache`
|
|
|
|
## Classes
|
|
|
|
### `TimedCache` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/utilities/cache.py#L7"><Icon icon="github" size="14" /></a></sup>
|
|
|
|
**Methods:**
|
|
|
|
#### `set` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/utilities/cache.py#L14"><Icon icon="github" size="14" /></a></sup>
|
|
|
|
```python
|
|
set(self, key: Any, value: Any) -> None
|
|
```
|
|
|
|
#### `get` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/utilities/cache.py#L18"><Icon icon="github" size="14" /></a></sup>
|
|
|
|
```python
|
|
get(self, key: Any) -> Any
|
|
```
|
|
|
|
#### `clear` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/utilities/cache.py#L25"><Icon icon="github" size="14" /></a></sup>
|
|
|
|
```python
|
|
clear(self) -> None
|
|
```
|