cunla / fakeredis-py

Implementation of Redis in python without having a Redis server running. Fully compatible with using redis-py.
https://fakeredis.moransoftware.ca/
BSD 3-Clause "New" or "Revised" License
298 stars 48 forks source link

Do not share state, by default, for sync or async clients #303

Closed howamith closed 8 months ago

howamith commented 8 months ago

Fix #299. Revert the sync client back to not sharing state by default, and make the async client work in the same way.

Also a quick minor fix of the link in the changelog which was taking users to a PR 299, rather than the PR that fixed issue 299.

Note that some of the real Redis tests were failing for me locally but for seemingly unrelated parts of the code so I wasn't sure if that was just something to do with the Redis server on my local machine. Figured I'd see if they fail in CI before spending any time trying to debug them - if they still fail here I'm happy to address them!