-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add asynchronous support #43
base: master
Are you sure you want to change the base?
Conversation
Sorry for the delay. I will take a look at this in the next couple days |
@@ -10,12 +10,12 @@ | |||
import zlib | |||
|
|||
|
|||
redis_host = "redis-test-host" | |||
redis_host = "localhost" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will break the tests. It can't be localhost
client = StrictRedis(host=redis_host, decode_responses=True) | ||
client_no_decode = StrictRedis(host=redis_host) | ||
|
||
|
||
@pytest.fixture(scope="session", autouse=True) | ||
@pytest.fixture(scope="module", autouse=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add async tests for AsyncRedis and adding a decorator to an async function?
@@ -247,7 +356,25 @@ def invalidate(self, *args, **kwargs): | |||
pipe.zrem(self.keys_key, key) | |||
pipe.execute() | |||
|
|||
async def async_invalidate(self, *args, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's add tests for all the new code
Summary
This PR introduces asynchronous support to the python-redis-cache library, allowing for non-blocking I/O operations and improved performance in environments requiring async operations.
Motivation
With increasing adoption of async frameworks like FastAPI, this enhancement allows the library to be used more efficiently in such environments, reducing I/O blocking and improving performance for developers working with asynchronous applications. #41
Potential Impact
These changes should not affect existing users who use the synchronous methods, as they remain fully supported. Asynchronous users will benefit from faster I/O operations without major codebase changes.