-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jedis.hset(String, Map<String, Object> is not available in Jedis API #116
Comments
Yes field should be a Map<String, String> fields = new HashMap<>();
map.put("first", "Ron")
map.put("last", "Kor") |
Thanks @gkorland . Does that mean we can not use this API to write/read Numeric fields which are defined in Redisearch Schema? thanks Jay |
@shannonantony you're right I guess the Jedis API could be better, but in your case all you need to do is to
|
Thank you very much for quick response @gkorland . That is what I was thinking too as a work around, but I just wanted to double check. I will test it out and see. |
From now on, |
Hi,
I am not able to run the sample as per https://github.com/RediSearch/JRediSearch example with respect to
try(Jedis conn = client.connction()){
conn.hset("item", fields);
}
As per Jedis API, fields should be a Map<String, String>
can you please clarify and help
thanks
Jay
The text was updated successfully, but these errors were encountered: