The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
39 views

Redis hash very slow writing speed

I'm facing a very strange issue : i get really crappy writing speeds when using redis (in a ideal world the writing speed should be approaching the writing speed on RAM). Here is my benchmark : ...
1
vote
1answer
129 views

Redis performance on AWS EC2 Micro Instance

I have made a funny observation on my Redis instance deployed on my AWS EC2 Micro instance ( Test environment) I was measuring the execution times of various operations that have to hit Redis. To ...
-2
votes
0answers
26 views

Ask for a jedis 2.0.2 api [closed]

String email ="yumin0408@126.com" doPost(File api,String email) System.out.println("Thank You");
3
votes
1answer
161 views

Redis/Jedis no single point of failure and automated failover

In a simple situation with 3 servers with 1 master and 2 slaves with no sharding. Is there a proven solution with java and Jedis that has no single point of failure and will automatically deal with a ...
3
votes
1answer
69 views

Response Object in Jedis - throws ClassCastException

Using Response Object in Jedis, throws ClassCastException . I am not able to get any value from Redis when I use pipeline. Please help. I am using Jedis 2.1.0 public class JedisPipeline { ...
0
votes
1answer
59 views

Jedis Pipeline Multi throws ClassCastException

public class JedisPipeline { private static JedisPool pool = new JedisPool(new JedisPoolConfig(), "127.0.0.1", 6379); public static void main(String args[]){ Jedis jedis = ...
0
votes
2answers
51 views

ERR EXEC without MULTI - Jedis

I'm learning jedis, I couldn't exactly find out what is the problem in this code. Can anyone help me.The exception occurs at the statement tx.exec() public class JedisFactory { public static void ...
5
votes
2answers
191 views

Integration Testing with Redis

I've started using Redis in my project with the help of the Jedis library. All is working fine but now I have a problem that my functional tests requires Redis to be up which I want to avoid in my ...
2
votes
0answers
46 views

single command to intersect redis sorted set by ranges

redis: redis>zadd zsetA 1 'A' redis>zadd zsetA 2 'B' redis>zadd zsetA 3 'C' redis>zadd zsetA 5 'E' redis>zadd zsetB 1 'A' redis>zadd zsetB 2 'B' redis>zadd zsetB 3 'C' ...
0
votes
0answers
5 views

ShardedJedisPipeline “get byte[]” operation

i have a question about "ShardedJedisPipeline". i want to know why ShardedJedisPipeline do not support "get byte[]" function in version 2.1. i read jedis source code and find it is easy to implement ...
0
votes
0answers
14 views

Does JOhm support ShardedJedisPool? And how?

I have seen the tutorial of JOhm,and its usage may like this: JOhm.setPool(SomeJedisPool); JOhm.save(Object); But I was wondering if JOhm support ShardedJedisPool? And how?
0
votes
2answers
39 views

Play 1.2.5 and Jedis

Simple question but how do I use Jedis with the play framework? In the dependencies file I added require: ... - jedis -> jedis 2.1.0 Then I run play deps its not downloading the dependency. ...
0
votes
1answer
42 views

Jedis and JOhm Eror

I am using Redis installed on Windows via chocolatey and setup jedis and JOhm in java project. The Redis server is live Redis version 2.6 When I want to save a Java object like the one in the post I ...
1
vote
1answer
72 views

Can't connect to redis via Jedis over ssh tunnel

I have two machines: machine foo (10.0.0.1) is running a redis server, and machine bar (192.168.0.1) is running a java application connecting to foo via jedis. Everything works fine when giving jedis ...
0
votes
1answer
171 views

REDIS/jedis update scores of all members in a sorted set

What's the best way to increment a medium size sorted set in REDIS? (Preferably with java driver JEDIS) Set has about 100-200K records in it. I want to increment their score by a given double number. ...
0
votes
1answer
221 views

Configure Jedis timeout

I'm having problems completing an .hgetall, here's what I've tried: Jedis jedis = new Jedis(REDIS_MASTER_NODE); jedis.connect(); jedis.configSet("timeout", "30"); Map<String, ...
0
votes
2answers
259 views

Android application with Jedis

I don't know whether my question makes sense or not. But here is what I have done. First trial with Java application: - I created sample Java project. - Added jedis jar file to it. - Established a ...
0
votes
1answer
452 views

I want to know, why get a exception of redis.clients.jedis.exceptions.JedisConnectionException?

I used jedis in my java project with one master and slave, once the slave started, it come to this in redis_slave.log: 44764 [2721] 24 Dec 14:07:41.157 * Connecting to MASTER... 44765 [2721] 24 Dec ...
1
vote
0answers
82 views

Could somebody tell me how to analyze the bytearray keys from redis?

I got a key like this: "\x04y\x03\x00\x00K" from my redis, and I totally confused about its meaning. Are "\x04" represents for a hex string and "y" stands for a ascii char? Is so, why does the key ...
0
votes
2answers
109 views

Are there any companies providing enterprise support for redis?

We have a use case in our organization, for which using redis as in-memory db best fits as solution.But to use it we need to have an enterprise support. I did a lot of search in google but couldn't ...
0
votes
1answer
263 views

Weird redis key with spring data Jedis

I am using Spring Data Redis with Jedis. I am trying to store a hash with key vc:${list_id}. I was able to successfully insert to redis. However when I inspect the keys via redis-cli, I don't see the ...
1
vote
1answer
342 views

Jedis is running out of resource instances, web application blocks

I'm running a Tomcat application which uses Jedis to access a Redis database. Form time to time the whole application blocks. By monitoring Tomcat using JavaMelody I found out that the problem seems ...
0
votes
0answers
139 views

Extracting Keys From Redis

I use this following code to extract all of the Keys start with "NAME:" and it return only over 5,000 records (There is over 60,000 keys in my index). Can anyone explain why it is happening or how can ...
2
votes
0answers
196 views

Getting resource error accessing Redis Q multiple times

This is my code used to access the value from redis Q. Jedis jedis = null; try { int maxActive = 1000; int maxIdle = 5; int minIdle = 1; long maxWait = 5000; JedisPoolConfig config = new ...
2
votes
1answer
1k views

Could not get a resource from the pool(SocketTimeoutException:)

I'm running multiple worker threads(around 10) to access the data from the redis Q. For the i'm using infinte timeout for Jedis Client. Jedis jedis = pool.getResource(); ...
0
votes
1answer
129 views

Jedis with JOhm

As per my understanding, with JOhm and Jedis, one could store/retrieve java class object in/from redis. One question I have is does JOhm also keep the java object in memory so that next time when that ...
0
votes
0answers
154 views

Pipeline support with BinaryJedis

I am using BinaryJedis to store and retrieve data as I am dealing with raw data. With Jedis pipeline I am able to save data in byte[] form in redis list. But when I try to retrieve this list data (one ...
0
votes
1answer
470 views

Can Jedis get/set an Java POJO?

I'm using Jedis as the java client to connect to Redis Servers. Question 1: It seems there is no method to get/set Object < ? extends Serializable> ? All the values must be String or byte[]? ...
1
vote
1answer
1k views

redis pub sub with jedis , sub crashes with error

All I have installed latest Redis 2.4.16 and trying to use its Pub/Sub system with java. I am putting a message to a channel every second. There is no issue with Publisher but Subscriber crashes with ...
1
vote
0answers
549 views

Using multiple JedisPools

Initially when I used 1 JedisPool to communicate with a Redis server (single instance of redis running on the server) I saw that my 200K queries took 15 sec to complete. For each query I do following: ...
0
votes
1answer
256 views

Redis / Jedis - Tomcat hangs - - waiting on <5c1a77ba> (a org.apache.commons.pool.impl.GenericObjectPool$Latch)

I have got the following problem: My Tomcat hangs with the following Thread Dump: "ajp-bio-28109-exec-1589" - Thread t@1713 java.lang.Thread.State: WAITING at ...
0
votes
1answer
247 views

Is the returned proxy object of 'Proxy.newProxyInstance()' thread safe in java?

I'm created a proxy class for Jedis, then it can return resource to the pool and mark the broken resource automatically. public class JedisProxy implements InvocationHandler { private final ...
1
vote
2answers
544 views

Does Jedis support async operations

I am using Jedis (java client) to commmunicate with Redis server. I have 3 Redis instances running on three different nodes. I want to "get" (read) some records from 3 Redis instances. I want to issue ...
1
vote
0answers
450 views

New Jedis Client Does Not Work In Static Java Method

Why does this same piece of code have different results? I'm using Jedis 2.1.0 to create connections to Redis. METHOD A: private static Jedis getNewJedis() { return new ...
1
vote
1answer
212 views

Redis Queue Incorrect Ordering

I am using redis to store an ordered set of items. Here is a sample code: object Producer{ def main(args:Array[String]){ val jedis = new Jedis("localhost") for (i<-1 to 10){ ...
0
votes
3answers
308 views

Redis: Beginners Issue

I have to store more than 100 millions of key-values in my HashMultiMap (key can have multiple values). Now, I want to use Jedis for that. I download it from here - Jedis 2.0.0.0.jar as recomended to ...
1
vote
0answers
244 views

AUTH exception sometimes occured with jedis client, anyone can help me?

Caused by: redis.clients.jedis.exceptions.JedisConnectionException: java.net.SocketTimeoutException: Read timed out at redis.clients.jedis.Protocol.process(Protocol.java:75) at ...
3
votes
1answer
786 views

Can redis pipeline multiple commands that depend on previous ones?

I'm very very new to redis and still playing around with it. I want to test to see if its relevant to my project but I'm not sure about a specific command I'm running. The users on SO have got me ...
0
votes
2answers
922 views

How to use java object as a value in Redis

I am pretty new to Redis. I downloaded Jedis and added that to my classpath. But, it doesnt provide a way to store java object as "value" Am i missing something or Jedis doesn't provide the way to ...
0
votes
1answer
448 views

How can Jedis connect to a redis server using a socket connection?

I'm having problems figuring out how to use the Jedis library to connect to a redis socket connection. I know how to connect through a network port: Jedis jedis = new Jedis("localhost"); //Jedis ...
0
votes
1answer
229 views

How can redis dump to several files but not only one?

Hello,I'd like to ask you two questions. (I am using java and jedis) I want to write 2G data to redis, how can I write faster? Does the redis dump the data to several files, not only the dump.rdb? ...
1
vote
1answer
1k views

jedis pubsub and timeouts: how to listen infinitely as subscriber?

I'm struggling with the concept of creating a Jedis-client which listens infinitely as a subscriber to a Redis pubsub channel and handles messages when they come in. My problem is that after a while ...
1
vote
2answers
367 views

Jedis Changing the semantics of Redis?

So, Redis specify the zrange (and related sorted set commands) as an ORDERED set of results (a list without duplicates perhaps?). Why then the zrange (and related APIs) on Jedis (Official and ...
0
votes
1answer
495 views

Using jedis with spring, but not with spring-data lib, where to store pool?

In the jedis docs it says to create a pool: JedisPool pool = new JedisPool(new JedisPoolConfig(), "localhost"); And that I should be storing this statically somewhere. I know spring has a ...
1
vote
2answers
431 views

Deleting multiple items from a Redis hash, based on a certain value

What is the most efficient way to delete a bunch of items from a hash, based on whether an item's value contains a specific substring or not? As far as I know, there is not really a way to do this in ...
1
vote
1answer
407 views

How to trace low-level output for Redis server

I want to trace all low-level output that the Jedis client sends via JedisCommands to the Redis server. Should I enable logging to achieve this?
2
votes
1answer
60 views

What is the difference between certain JedisCommands which seem to be functionally equivalent to java.lang.String class

What is the difference between substr command from JedisCommands and java.lang.String substr
3
votes
1answer
6k views

JedisConnectionException: java.net.SocketTimeoutException: connect timed out

I'm using jedis for simple key-value data store... My code is as follows private static final String HOST = "50.30.35.9"; private static final int PORT = 2863; Jedis jedis = new Jedis(HOST, ...
0
votes
2answers
204 views

Jedis Storage Confusion, Is this issue from Redis or Jedis?

The following java code inserts a million integer pairs into redis. public class JedisInsertion { public static byte[] fromInt(int v) { return ...
0
votes
0answers
205 views

Getting exception in JOhm in example code

Yesterday tried to use JOhm library with Jedis to simplify my work and cache whole object, not just parts of it. And already from the beginning I was met with exception. Exception: Exception in ...

1 2