From 121f8a5f8d483b3f8199c87d16a99347f8f7f475 Mon Sep 17 00:00:00 2001 From: dsc Date: Sun, 5 Jan 2020 15:13:03 +0100 Subject: [PATCH] Update README --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2d55eef..94c1595 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ the example above creates a connection pool. #### Trio support -Quart-Session comes with [an (experimental) Redis client](redis) for use with the [Trio](https://trio.readthedocs.io/en/stable/) eventloop. +Quart-Session comes with [an (experimental) Redis client](quart_session/redis_trio) for use with the [Trio](https://trio.readthedocs.io/en/stable/) eventloop. ```python3 from quart_trio import QuartTrio @@ -191,6 +191,7 @@ straightforward. The distinct changes are specified below: - Quart-Session does not `Set-Cookie` on (static) files by default. - Quart-Session might not have all the back-end interfaces implemented (yet), such as "filesystem". - Quart-Session uses a different serializer: `quart.json.tag.TaggedJSONSerializer` instead of `pickle`. +- Quart-Session disallows the client to supply their own made up `sid` cookie value. ## Help