File tree 1 file changed +37
-0
lines changed
1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,43 @@ A ``cache`` instance MUST have methods:
100
100
101
101
- ``.get(key) ``
102
102
- ``.set(key, value, expires=None) ``
103
+ - ``.delete(key) ``
104
+
105
+ An example of a ``cache `` instance can be:
106
+
107
+ .. code-block :: python
108
+
109
+ from flask import Flask
110
+
111
+ class OAuthCache :
112
+
113
+ def __init__ (self , app : Flask) -> None :
114
+ """ Initialize the AuthCache."""
115
+ self .app = app
116
+
117
+ def set (self , key : str , value : str , expires : int | None = None ) -> None :
118
+ """
119
+ Set a value in the cache with optional expiration.
120
+
121
+ :param key: Unique identifier for the cache entry.
122
+ :param value: Value to be stored.
123
+ :param expires: Expiration time in seconds. Defaults to None (no expiration).
124
+ """
125
+
126
+ def get (self , key : str ) -> str | None :
127
+ """
128
+ Retrieve a value from the cache.
129
+
130
+ :param key: Unique identifier for the cache entry.
131
+ :return: Retrieved value or None if not found or expired.
132
+ """
133
+
134
+ def delete (self , key : str ) -> None :
135
+ """
136
+ Delete a cache entry.
137
+
138
+ :param key: Unique identifier for the cache entry.
139
+ """
103
140
104
141
105
142
Routes for Authorization
You can’t perform that action at this time.
0 commit comments