Opened 20 months ago
Closed 20 months ago
#35263 closed New feature (wontfix)
Add keys() and hashes() functions to Redis cache backend.
| Reported by: | Sapjarern Udomviriyalanon | Owned by: | nobody |
|---|---|---|---|
| Component: | Core (Cache system) | Version: | dev |
| Severity: | Normal | Keywords: | redis |
| Cc: | Sapjarern Udomviriyalanon | Triage Stage: | Unreviewed |
| Has patch: | no | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
The native Redis support function for get keys list with pattern and function about store hashes in redis
list keys function => https://redis.io/commands/keys/
hashes function => https://redis.io/docs/data-types/hashes/
so it would be nice if Redis cache backend supports both natively as well.
Change History (1)
comment:1 by , 20 months ago
| Keywords: | redis added; cache removed |
|---|---|
| Resolution: | → wontfix |
| Status: | new → closed |
| Summary: | Add new Redis function to redis cache backend → Add keys() and hashes() functions to Redis cache backend. |
| Type: | Cleanup/optimization → New feature |
Note:
See TracTickets
for help on using tickets.
We agreed in #33012 to keep the builtin Redis backend minimal and consistent with other backends. It looks like you should use
django-redisfor your use case.