File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
src/main/java/redis/clients/jedis Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ apply plugin: 'maven'
33apply plugin : ' eclipse'
44
55group = ' com.googlecode.jedis'
6- archiveBaseName = ' jedis'
6+ archivesBaseName = ' jedis'
77version = ' 1.5.0'
88
99repositories {
Original file line number Diff line number Diff line change @@ -1116,8 +1116,8 @@ public String lpop(final String key) {
11161116
11171117 /**
11181118 * Atomically return and remove the first (LPOP) or last (RPOP) element of
1119- * the list. For example if the list contains the elements "a","b","c" LPOP
1120- * will return "a " and the list will become "b ","c ".
1119+ * the list. For example if the list contains the elements "a","b","c" RPOP
1120+ * will return "c " and the list will become "a ","b ".
11211121 * <p>
11221122 * If the key does not exist or the list is already empty the special value
11231123 * 'nil' is returned.
Original file line number Diff line number Diff line change @@ -384,7 +384,7 @@ public Long hlen(final String key) {
384384 maxRedirections ) {
385385 @ Override
386386 public Long execute (Jedis connection ) {
387- return connection .hdel (key );
387+ return connection .hlen (key );
388388 }
389389 }.run (key );
390390 }
You can’t perform that action at this time.
0 commit comments