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
| TTL attribute name |`expiration`| Using AWS Console? this is configurable after table creation |
104
+
| TTL attribute name |`expiration`| Using AWS Console? This is configurable after table creation |
105
105
106
106
Note that `fn_qualified_name` means the [qualified name for classes and functions](https://peps.python.org/pep-3155/){target="_blank" rel="nofollow"} defined in PEP-3155.
107
107
@@ -207,7 +207,7 @@ By default, `idempotent_function` serializes, stores, and returns your annotated
207
207
208
208
The output serializer supports any JSON serializable data, **Python Dataclasses** and **Pydantic Models**.
209
209
210
-
!!! info "When using the `output_serializer` parameter, the data will continue to be stored in DynamoDB as a JSON string."
210
+
!!! info "When using the `output_serializer` parameter, the data will continue to be stored in your persistent storage as a JSON string."
211
211
212
212
=== "Pydantic"
213
213
@@ -321,7 +321,7 @@ We want to use `user_id` and `product_id` fields as our idempotency key. **If we
321
321
322
322
### Adjusting expiration window
323
323
324
-
!!! note "We expire idempotency records after **an hour** (3600 seconds). After that, a transaction with the same payload [will not be considered idempotent](#expired-idempotency-records)."
324
+
!!! note "By default, we expire idempotency records after **an hour** (3600 seconds). After that, a transaction with the same payload [will not be considered idempotent](#expired-idempotency-records)."
325
325
326
326
You can change this expiration window with the **`expires_after_seconds`** parameter. There is no limit on how long this expiration window can be set to.
327
327
@@ -436,7 +436,7 @@ You can customize the attribute names during initialization:
436
436
437
437
!!! info "We recommend Redis version 7 or higher for optimal performance."
438
438
439
-
For simple setups, initialize `RedisCachePersistenceLayer` with your cluster endpoint and port to connect.
439
+
For simple setups, initialize `RedisCachePersistenceLayer` with your Redis endpoint and port to connect.
440
440
441
441
For security, we enforce SSL connections by default; to disable it, set `ssl=False`.
0 commit comments