Problem I have about a million records in Redis which I want to dump into Elasticsearch periodically. I just want […]
Tag: redis
Redis lock implementation
Problem Considering I’m not implementing distributed lock mechanism, is this code correct and clear? class RedisLock class NotAcquired < StandardError; […]
NodeJS script to dump data from Redis to Elasticsearch
Problem I have about a million records in Redis which I want to dump into Elasticsearch periodically. I just want […]
Chat logger using Redis
Problem I’m developing a Java EE project which uses Redis through the Jedis library. I’m retrieving the chat history of […]
Spring Data Redis – mapping object relationships?
Problem I’m designing an app that will process a set of social media messages which are posted by users. Each […]
Using Redis to store word occurences
Problem I am doing a project where I am analyzing a group of Tweets. What I need to do is […]
Redis Message Queue (Cloud)
Problem I am in the process of writing a Cloud application (mostly hobby, learning) that required a very quick cache, […]
Web scraper extracts zip files and publishes them to redis
Problem I wrote this program for a job interview a while back. I would like general feedback on style, readability, […]
Redis lookup with a default value
Problem I have some code to perform a redis lookup, but if the key to look up either doesn’t exist […]