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
A feature request on adding a flag, when registering the plugin to disable caching.
This can be useful when developing, so we don't get the cached version from the database.
Example of the flag you could set could be:
constfastify=Fastify().register(dynamodbCache,{dynamoDbRegion: "",// AWS region of your choice.dynamoDbAddress: "http://localhost:8000",// Optional! If you are hosting your own instance of Dynamo (locally or cloud), then specify the ip address of the database here.tableName: "fastify-dynamodb-cache",// DynamoDB table namedefaultTTLSeconds: 30,// Default TTL (seconds), which would be used if no TTL is specified on the endpoint.// NEW FLAGdisableCache: true|false// Disables caching during development});
The text was updated successfully, but these errors were encountered:
A feature request on adding a flag, when registering the plugin to disable caching.
This can be useful when developing, so we don't get the cached version from the database.
Example of the flag you could set could be:
The text was updated successfully, but these errors were encountered: