Questions tagged [redis-cache]

Redis is an open source (BSD licensed), in-memory data structure store, use this tag for specific cache usage

Redis is an open source (BSD licensed), in-memory data structure store, use this tag for specific cache usage.

Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache and message broker. It supports data structures such as strings, hashes, lists, sets, sorted sets with range queries, bitmaps, hyperloglogs and geospatial indexes with radius queries. Redis has built-in replication, Lua scripting, LRU eviction, transactions and different levels of on-disk persistence, and provides high availability via Redis Sentinel and automatic partitioning with Redis Cluster.

Site: https://redis.io/

How to Use Azure Redis Cache: https://learn.microsoft.com/en-us/azure/redis-cache/cache-dotnet-how-to-use-azure-redis-cache

143 questions
0
votes
1 answer

Redis cache context listener in spring boot how to know is redis cache up or not?

We have a spring application where redis cache has been implemented along with the database MySQL. Here we are using redis cache to store the temporary values for the server validations instead of hitting the database every time, hence hitting the…
0
votes
1 answer

Redis throughs (ERR operation not permitted) error even after properly running for 1 to 2 hrs

I have used Redis in my project for Caching purpose, I used Spring for that set up, You can go through the below mentioned link to understand what I did in my project.…
Ziaullhaq Savanur
  • 1,848
  • 2
  • 17
  • 20
0
votes
1 answer

Delete and insert Data into Redis Cache every 2 minutes

I have a scenario where I need to sync my MySQL data into redis cache every 2 minutes. Basically I have 2 tables categories and articles table. Every article belongs to some particular category. Retrieval : I need to fetch articles of particular…
Sharath
  • 2,348
  • 8
  • 45
  • 81
0
votes
1 answer

Azure Redis cache not expired properly

I am using Azure Redis Cache with 250MB storage, and am storing list of objects with expire time.When i save more list of objects with different key means expire time not working properly. If there is no data means its working fine, refreshing in…
BALA G
  • 75
  • 10
0
votes
1 answer

Redis Cache data back up

I have started reading about Redis Cache. At very basic level it stores data in memory like any other in memory cache. So my question is what will happen to the data stored in it if it crashes or restarted. Is there any persistence (data back…
Ashu
  • 1,703
  • 4
  • 16
  • 23
0
votes
2 answers

Spring-data-redis: cacheManager configuration issue

I am using redis as my spring cache implementation. And the official doc says we should configure the cache manager like this:
maxwong
  • 63
  • 2
  • 7
0
votes
1 answer

Omit, skip redis cache store, if it not available

I use redis-store as cache store for Rails config.cache_store = :redis_store When the redis-request fails (no connection during restart of redis, redis down, timeout, etc) the whole application fails. Is there an option to just skip redis and…
Phil
  • 145
  • 8
-1
votes
1 answer

Error while creating a Redis object and executing commands when calling methods

This is the output of my rails console after I include rubygems and redis. 2.0.0-p353 :024 > r = Redis.new => # 2.0.0-p353 :025 > r.set('foo','bar') => "OK" 2.0.0-p353 :026 > r.get('foo') =>…
poorva
  • 1,726
  • 1
  • 17
  • 15
1 2 3
9
10