mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-14 17:49:11 +02:00
30 lines
284 B
Text
30 lines
284 B
Text
---
|
|
title: cache
|
|
sidebarTitle: cache
|
|
---
|
|
|
|
# `fastmcp.utilities.cache`
|
|
|
|
## Classes
|
|
|
|
### `TimedCache`
|
|
|
|
**Methods:**
|
|
|
|
#### `set`
|
|
|
|
```python
|
|
set(self, key: Any, value: Any) -> None
|
|
```
|
|
|
|
#### `get`
|
|
|
|
```python
|
|
get(self, key: Any) -> Any
|
|
```
|
|
|
|
#### `clear`
|
|
|
|
```python
|
|
clear(self) -> None
|
|
```
|