You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to JRedis
long del(String ... keys) deletes one or more keys. Returned result
is the actual number of keys deleted. Same restrictions as mget
apply
regarding null/zero-length keys arg.
Notes: a very minor subset of commands (in JRedisFuture) and one
command in JRedis (RANDOMKEY) now return byte[] instead of String. At
this point, the client can't trivially determine if your key was a
generic byte[] or a String (UTF-8). But you do, so if you expect a
String, just do 'new String(returnedBytes);'.
This was o/c reflected in the broken tests, so that's the best place
to look to see note what you need to change (and how):