Questions tagged [jedis]

Jedis is a small free client for Redis, written in and for Java.

From its GitHub repository:

Jedis is a Java client for Redis designed for performance and ease of use.

Resources

868 questions
-1
votes
1 answer

REDIS Desktop Manager error

Anyone ever experienced "Can not load key value. Key was removed or redis-server went away." error when viewing a key in Redis Desktop Manager? I am using Jedis as the client to push data to Redis server. I can see (from the terminal, MONITOR…
rms24601
  • 11
  • 4
-2
votes
1 answer

Jedis Benchmarking - How fast is Jedis

I am using Jedis to connect to Redis and push data into a list. I am using rpush for the JSON data. These are the steps I do: Fetch Data from Rabbitmq Collect info from JSON data and prepare a key , value pair Push the data into redis using the key…
-2
votes
2 answers

how to get list of hashes in redis db using java?

Is there any way to achieve and implemen this using java program. Currently I am referring Redis website.
sathya
  • 199
  • 5
  • 26
-2
votes
1 answer

setting a redis cluster on ubuntu using jedis

Im trying to set a Redis cluster (3 masters, 3 slaves) using JedisCluster. How should I set up the configuration files for the nodes of the cluster? Does JedisCluster methods are sufficient to set up the cluster?
TommyW
  • 550
  • 1
  • 6
  • 21
-2
votes
1 answer

ClassCastException while using opsForHash.scan() in redis

ClassCastException occurs when I try to scan a large number of keys using opsForHash.scan() method. I am using Jedis 2.6.2 and I face this error only when the number of keys to be searched is large(~100,000). I have read solutions to this…
rvd
  • 2,214
  • 3
  • 13
  • 14
-2
votes
1 answer

What is the signature for "getRedisPool"?

After upgrading the jedis version(2.7.3), I'm getting "Incompatible argument to function". Can you please tell me the signature for "getRedisPool" method?
Suresh Kumar
  • 615
  • 2
  • 8
  • 15
-3
votes
1 answer

Need some PUB/SUB Jedis Help Bukkit

I am currently having some trouble with this code: public class ChatPlugin extends JavaPlugin implements Listener{ private static ChatPlugin instance; private final static String CHANNEL = "chat"; private JedisPool jedisPool; private ChatChannel…
stargate
  • 21
  • 1
  • 4
-3
votes
3 answers

How to set map to cache with jedis

I am newer to use jedis not spring-data-redis. now I want to set Map to cache with jedis. what should I do? who can help me? thank you!
yu_lele
  • 21
  • 5
-4
votes
1 answer

How to save this data into Redis by using Jedis library?

I am new in redis database and I need a bit help. I need to store lot of values to speciefied key, I'm making a punishment system for Minecraft so I need to store Player, PlayerUUID, Staff, Reason, Time, Date, Active, Unbanned by, Unban reason,…
Ján Kluka
  • 11
  • 2
1 2 3
57
58