From ed7969d7c8e03ef9683b8408b3cdd44414a16cd1 Mon Sep 17 00:00:00 2001 From: MissterHao Date: Sat, 4 Feb 2023 08:17:46 +0800 Subject: [PATCH] Update README.md --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3e613f0..b6731b5 100644 --- a/README.md +++ b/README.md @@ -32,11 +32,15 @@ Django-dysession is a simple and easy-to-use app which allow Django developers to take DyanmoDB as Session Backend Database. +DynamoDB is Fast, flexible NoSQL database service for single-digit millisecond performance at any scale. + +Using DynamoDB for session storage alleviates issues that occur with session handling in a distributed web application by moving sessions off of the local file system and into a shared location. [[1]] + + Easy to use! All you need is add two lines of Code! + Support ttl attribute Django's default session won't delete expired session data. By using DynamoDB, we can take advantage of DynamoDB's ttl attrubute to auto delete expired session data. -+ Taking advantage of AWS serverless service! ( No more effort to maintain ) ++ Taking advantage of AWS serverless service! ( No more effort to maintain and autoscale ) ## Requirements @@ -135,3 +139,8 @@ DYSESSION = { + + +## Reference + +[1]: https://docs.aws.amazon.com/aws-sdk-php/v2/guide/feature-dynamodb-session-handler.html \ No newline at end of file