You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/config_reference.rst
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@ These are specific to Flask-Session.
18
18
- **cachelib**: CacheLibSessionInterface
19
19
- **mongodb**: MongoDBSessionInterface
20
20
- **sqlalchemy**: SqlAlchemySessionInterface
21
+
- **dynamodb**: DynamoDBSessionInterface
21
22
22
23
.. py:data::SESSION_PERMANENT
23
24
@@ -215,6 +216,12 @@ Dynamodb
215
216
216
217
Default: ``'Sessions'``
217
218
219
+
.. py:data::SESSION_DYNAMODB_TABLE_EXISTS
220
+
221
+
By default it will create a new table with the TTL setting activated unless you set this parameter to ``True``, then it assumes that the table already exists.
222
+
223
+
Default: ``False``
224
+
218
225
.. deprecated:: 0.7.0
219
226
220
227
``SESSION_FILE_DIR``, ``SESSION_FILE_THRESHOLD``, ``SESSION_FILE_MODE``. Use ``SESSION_CACHELIB`` instead.
Copy file name to clipboardExpand all lines: docs/config_serialization.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ The msgspec library has speed and memory advantages over other libraries. Howeve
14
14
If you encounter a TypeError such as: "Encoding objects of type <type> is unsupported", you may be attempting to serialize an unsupported type. In this case, you can either convert the object to a supported type or use a different serializer.
0 commit comments