Ecosyste.ms: OpenCollective

An open API service for software projects hosted on Open Collective.

github.com/redis/jedis

Redis Java client
https://github.com/redis/jedis

Modify YourKit logo to black font

e9cd3b36c1ceeaa3b6de1cfd2d3a0abfba3420c7 authored over 10 years ago
Merge pull request #759 from HeartSaVioR/master

Add sponsorship : YourKit

5bed301ae9345313db338a8d7e919b844fee6b49 authored over 10 years ago
Add sponsorship : YourKit

22bd2acfc773e87f17f03e40e910aeb3d08b002c authored over 10 years ago
Merge pull request #748 from xuwei-k/override-hashCode

override HostAndPort#hashCode

4c6d83554ee0bd021f234b07d017e56210ea0e59 authored over 10 years ago
Merge pull request #756 from HeartSaVioR/fix-crc16-encode-string-to-bytes

Fix CRC16 encode : string to bytes

67a1d390e7216fb1ebb57cefb219ce02242071ff authored over 10 years ago
Merge pull request #755 from HeartSaVioR/remove-redundant-synchronize-from-jedis-cluster-info-cache

Remove redundant synchronized from JedisClusterInfoCache

3697e01caa6ff4ecd2f72f0ca71d996d89928964 authored over 10 years ago
Merge pull request #754 from HeartSaVioR/fix-reversed-parameters-zrangebylex-with-pipeline

Fix zrangebylex with pipelined (parameters reversed)

9e17186121ccf91a1d85f17769c421db4f474838 authored over 10 years ago
Merge pull request #753 from HeartSaVioR/support-zrevrangebylex

Support zrevrangebylex command (closes #746)

2a36bf8cc3eb7ad00a0f1fad158ddb0da887d4fd authored over 10 years ago
Merge branch 'fix-invalid-file-mode'

69ca4040da7cfc394eae5a6ec0a83aded1eea839 authored over 10 years ago
Merge branch 'Hailei-jedis-cluster-fix-asking'

8e5c35307f37970cda5383d71e7f38e60055e988 authored over 10 years ago
changing default constructor to use default host and port (localhost)

833065b6708dd19fd83111f1c2586ac6f73a52bf authored over 10 years ago
Fix CRC16 encode : string to bytes

* should use SafeEncoder.encode() instead of String.getBytes()

a405ce205ce54910236f3ab9ffb599317eef38d7 authored over 10 years ago
Merge branch 'cluster-revised' into cluster-support-multi-key-new

Conflicts:
src/main/java/redis/clients/jedis/BinaryJedisCluster.java
src/main/java/redis/clien...

4a9b82a4821057f6d6d6d69f801c4d6b4d2a3157 authored over 10 years ago
Merge branch 'master' into cluster-revised

Conflicts:
src/main/java/redis/clients/jedis/JedisCluster.java
src/main/java/redis/clients/jed...

53e7dc218fdf8e703bad4cebf6ef7201b96d2b5e authored over 10 years ago
Remove redundant synchronized from JedisClusterInfoCache

* JedisClusterInfoCache already uses RWLock so synchonized keyword is not necessary
** it just s...

9a6d3f35fe45cbdec9abbb2b4ffd20fe056250aa authored over 10 years ago
Fix zrangebylex with pipelined (parameters reversed)

2b1cb8fe318301b4726b495f3808b249a1fece34 authored over 10 years ago
Support zrevrangebylex command

* binary, string, pipeline (binary, string), sharded(binary, string), cluster (string)

61f8ff69187692808285dd86c30bb1a0976e1600 authored over 10 years ago
Fail fast while initializing JedisSentinelPool

* wrong master name is specified
* all sentinel is down or not reached

c5336310bd4e0ea3879ef961c21fa69e098699f1 authored over 10 years ago
Fix invalid file mode 755 -> 644

cc3fe856084213f9aeed1899644b581a377d7ee7 authored over 10 years ago
override HostAndPort#hashCode

653d6c006cfbc6a99b681e1658844d15cd5bcc93 authored over 10 years ago
ASK Redirection don't update slot->node

1578cae9fc910123df40463fed97cc6c5939d061 authored over 10 years ago
Version bump for README.md

7836531ad788999e67704bf20c81afc0313aa098 authored over 10 years ago
Version bump

723fee7e278f0559da67951e791d368ce4585495 authored over 10 years ago
we can't pass null because it will throw an exception. Using localhost instead

f065b80ab0e16b059d49308f6743b24ef3c9d0cc authored over 10 years ago
making Jedis compatible with CDI

a3f7e888dabfd8237724977b44b0d0488e70b961 authored over 10 years ago
Merge pull request #743 from HeartSaVioR/master

Remove unused & buggy method / class (related to ThreadLocal<Random>)

6bf917039e82478193d65fd883c82e60564f6a50 authored over 10 years ago
Remove unused & buggy method / class (related to ThreadLocal<Random>)

f8c69b105a8b995fdb74821557aeb5f01819d845 authored over 10 years ago
Merge pull request #741 from HeartSaVioR/optimize-crc16-calculation

Optimize CRC16 calculation (with optimization of slot decision)

45fce4368e38cee7a75ca659e92beed24b2359ff authored over 10 years ago
Optimize CRC16 calculation (with optimization of slot decision)

96c762b8806f153ec5e5d57d010d25c2ad90a94b authored over 10 years ago
Merge pull request #737 from xetorthio/improve_test_stability

Improve test stability

167221b81a7a4c7f5442c0cf4f4b15bf35135639 authored over 10 years ago
Fixes #732. Tests are much more reliable now and we removed unnecessary redis cluster integration tests which randomly failed due to the nature of redis cluster

ce2ab6a937deac818bd90e3effd70e67b95a3bac authored over 10 years ago
Add support for cluster reset command. Some tests were refactored per the inclusion of the new command

687716902d4ca8e9bb5a306a8af3a4ab1ba0b4bf authored over 10 years ago
Merge pull request #735 from HeartSaVioR/use-threadlocal-random-instead-of-creating-random-each-time

Use ThreadLocal<Random> instead of creating Random each time

56d179894362de07c647e37666d835aea1cb426d authored over 10 years ago
use ThreadLocal<Random> instead of creating Random each time

* We can't use ThreadLocalRandom because we need to support JDK6

e4441ec5b327fad913a206224ee97da8cfe86efb authored over 10 years ago
Merge pull request #733 from HeartSaVioR/crc16-lookup-table

Use lookup table when calculating CRC16 XMODEM

2f18da67f12ec622015499fa18159f4bb36fec4d authored over 10 years ago
Hide lookup table to prevent broken

10307ecd2e2da6a2639855a955ae8a2bdfb26f14 authored over 10 years ago
Use lookup table when calculating CRC16 XMODEM

* I borrowed it from https://github.com/mp911de/lettuce/commit/b9219314802fb0236b0bb39e8e38cc0e5...

ad10f91b607f71b9a2bd53566ad3f25cbeb0cc9b authored over 10 years ago
Merging with upstream, necessary changes, shifting poolConfig as private instance variable from JedisClusterConnectionHandler to JedisClusterInfoCache due to design change in previous commits.

37a3c7b8359a456804947ebde546c7e096ef2176 authored over 10 years ago
Merge branch 'sentinel_config_err_handling' of https://github.com/wizwjw/jedis into wizwjw-sentinel_config_err_handling

Conflicts:
src/main/java/redis/clients/jedis/JedisSentinelPool.java
src/test/java/redis/client...

fc594db9a3d0027604e44b9ac979d1f35cc61800 authored over 10 years ago
Merge pull request #722 from vermahim/master

pipelined transaction response fix

53c934489874db3f00c41bb459a4e014d34ecb06 authored over 10 years ago
Merge branch 'feature_blocklist_parameter' of https://github.com/catinred2/jedis into catinred2-feature_blocklist_parameter

Conflicts:
src/main/java/redis/clients/jedis/Jedis.java
src/main/java/redis/clients/jedis/Jedi...

8492757f7abaf07f4ac182f674742bdec161e1d9 authored over 10 years ago
Merge branch 'make-it-better-to-use-URI' of https://github.com/HeartSaVioR/jedis into HeartSaVioR-make-it-better-to-use-URI

992ae7aadd243f48fad4fc44bf0c6ba762103a37 authored over 10 years ago
Merge branch 'support-sorted-set-with-lex' of https://github.com/HeartSaVioR/jedis into HeartSaVioR-support-sorted-set-with-lex

4224eabd39dcf19206b26e3c4e87918d609a8ee0 authored over 10 years ago
Merge branch 'pool-closeable-support' of https://github.com/HeartSaVioR/jedis into HeartSaVioR-pool-closeable-support

bb9bc1cbe157b8d64c016120b66cb56ac453b7fc authored over 10 years ago
Merge branch 'master' of https://github.com/nrodrigues/jedis into nrodrigues-master

a4f975db8190701c317377ff616b40362e731f51 authored over 10 years ago
Merge branch 'renew-slots-info-when-moved-has-occurred' of https://github.com/HeartSaVioR/jedis into HeartSaVioR-renew-slots-info-when-moved-has-occurred

a3eeea75218f4774c1fb26debe86953c165596fe authored over 10 years ago
Merge branch 'support-sorted-set-with-lex' of github.com:HeartSaVioR/jedis into support-sorted-set-with-lex

3d7b412a57bc2ae4e16ff47a1d4ce68a879230f0 authored over 10 years ago
Merge branch 'master' into support-sorted-set-with-lex

Conflicts:
src/main/java/redis/clients/jedis/BinaryShardedJedis.java
src/main/java/redis/clien...

8a5eb605124e77648233003efd3d62ea93154463 authored over 10 years ago
Replace Closer class to use its close() method

f931a4fc81871710a9ba4dc62ca62e035c9be5e7 authored over 10 years ago
JedisURIHelper.getDBIndex() now returns 0 when db index is not provided

bfcecd73cb3b56a4f9ae99dac9bc068518f62224 authored over 10 years ago
Closes #656. Added 2 more asserts to ensure the count decrements correctly.

36810dfcba45dbf8a200c893cc287adf101bd962 authored over 10 years ago
Closes #656. Add a getNumActive() method to JedisPool to provide access to the current state of the internal pool.

a201e29d88ca8fccfe28d71e5e7c76cbe91d2a02 authored over 10 years ago
pipelined transaction response fix : indentation fix

9b824c3aadc94a9dcd3a3f0def24ffdab43ffb9f authored over 10 years ago
pipelined transaction response fix

b2193457613cb76bfc107d038140071c8674905c authored over 10 years ago
Merge branch 'markus-s24-double-weights'

ebaba7911927a30642458a54687d0581d0e17fe9 authored over 10 years ago
Merge branch 'double-weights' of https://github.com/markus-s24/jedis into markus-s24-double-weights

582d00b5ca5688e21bb47aa7413f37622420b482 authored over 10 years ago
Merge branch 'markust push origin master-s24-master'

d3d5d476e3e5b4c155131fef22055ad9816dbd43 authored over 10 years ago
Merge branch 'master' of https://github.com/markus-s24/jedis into markus-s24-master

f6aced860a7adebad77005c99d0292a07f0e1748 authored over 10 years ago
Merge branch 'HeartSaVioR-present-close-to-jedis-cluster'

db6d8c0daf9602893324c56661c1b3b04e15346e authored over 10 years ago
Merge branch 'present-close-to-jedis-cluster' of https://github.com/HeartSaVioR/jedis into HeartSaVioR-present-close-to-jedis-cluster

babedd5be07f7f226ea8bcbbbd34141f7de84915 authored over 10 years ago
Merge pull request #718 from HeartSaVioR/pubsub-numsub-output-changed

Follow up changes on "pubsub numsub" output (Fixes #714)

3a3b73fca86f2b608ddf03523122f9ffb711b7f3 authored over 10 years ago
Implements #701, add close() to JedisCluster

0a094ff0b4327f2fdffdc5fe051d7903ac084a92 authored over 10 years ago
Follow up changes on "pubsub numsub" output

* String, String to String, Long
* We're avoiding to break backward compatibility
** convert Lon...

431ae79ff161f9f1e20f4b8713d370b0f561eb6d authored over 10 years ago
Merge branch '50onRed-fix-hgetall'

419f0c7d171fd2cdc765bdf8baa05bcb15477586 authored over 10 years ago
Removed deprecated int based weights

2eda9cd8fb78745996fdc20d93000f9ab787a89f authored over 10 years ago
Restored old method for int weights for backwards compatibility

ad5412d8cfc24ab56f9da3d3159035630fd00d36 authored over 10 years ago
fix binary version of hgetAll(), fixes #711

9f4faf53ffdc87387d84bb9b4d1b1a9de393afed authored over 10 years ago
Adopted test to use decimal weight values

ae73a99a17628d6e12ade3550b9a15967342696f authored over 10 years ago
Changed weights from ints to doubles

52ac566dd3856eb19a8286d3eb4306da825880ef authored over 10 years ago
add blpop/brpop with timeout parameter interface to JedisCommands

a30598b7cbb24b133a35d472c8440395a65706cc authored over 10 years ago
add timeout parameter to blpop/brpop

c62672e3a058bde24e37b0e49694505472ae904f authored over 10 years ago
Merge branch 'pipeline-and-transaction-can-handle-responses-on-their-own-status' of https://github.com/HeartSaVioR/jedis into HeartSaVioR-pipeline-and-transaction-can-handle-responses-on-their-own-status

c42965dcd54a4247ff8570fba52706bc033a4e49 authored over 10 years ago
Merge branch 'pipeline_getrange_fix' of https://github.com/UglyTroLL/jedis into UglyTroLL-pipeline_getrange_fix

68a56938c19ca64f36592e2314e2cc9283e98540 authored over 10 years ago
Merge branch 'remove-pexpire-int' of https://github.com/aniketschneider/jedis into aniketschneider-remove-pexpire-int

Conflicts:
src/main/java/redis/clients/jedis/Client.java

e6d08f46fb6bb27100e7a682f50422c164890cab authored over 10 years ago
Merge branch 'unsigned_long_cursor_remove_deprecated' of https://github.com/HeartSaVioR/jedis into HeartSaVioR-unsigned_long_cursor_remove_deprecated

Conflicts:
src/main/java/redis/clients/jedis/Jedis.java
src/main/java/redis/clients/jedis/Jedi...

5bf4a697fb37d168d20cc02c6b06fbcb6c9d42e5 authored over 10 years ago
Merge branch 'support-cluster-slots' of https://github.com/HeartSaVioR/jedis into HeartSaVioR-support-cluster-slots

26d1f4ad908e07189c8650ee0179b0b6beb4b7fc authored over 10 years ago
Merge branch 'fix/complete-interface' of https://github.com/lstrojny/jedis into lstrojny-fix/complete-interface

1e94acd7dad0108ef26abb153276f1b080cd6e9c authored over 10 years ago
Fix indentation (code formatting...)

514144d472135dbf5ece2677be2d28f4fa58ca31 authored over 10 years ago
Merge branch 'master' into pipeline-and-transaction-can-handle-responses-on-their-own-status

* it's broken with later features, resetState()
* fixed resetState() to make it work with this P...

1877185153eb229388e606ff854919ba42059d5f authored over 10 years ago
Fix JedisCluster's *scan to use key argument

0f76459fd6bfc079bd485ecd8a13e133f260ea5d authored over 10 years ago
Supports Multi Key operation to JedisCluster

* New interfaces introduced (copy existing interfaces and remove some commands)
* there're some ...

0bb786fbb9aa495970f0b75209f26b05cde1cc95 authored over 10 years ago
version bump

2d93fa0e2b6df113d49b0e2790a3aa1e306d07fd authored over 10 years ago
Merge branch 'master' into cluster-revised

3b31ae708c003e77e4027507d9c3116c27d8d04d authored over 10 years ago
Merge pull request #685 from HeartSaVioR/master

Fixed critical JedisCluster bug : hlen calls hdel

03c0af2581386394637d83713efe6bfa8ab6e446 authored over 10 years ago
Fixed critical JedisCluster bug : hlen calls hdel

d7cd3a0af671b0fcf30b7cd4819fa9026f8d92f8 authored over 10 years ago
Do master failover detection in JedisSentielPool.getResource

056e6e9db2c3a3081e41092ea748332526cdaf4c authored over 10 years ago
Add second jedis connection to waitForNewPromotedMaster call

dddc0d15f108637e8fd733359713e13bc1656fb4 authored over 10 years ago
Properly close jedis connection in case of exceptions

c81bdc08491932caadee59fa8582b7703d5fced7 authored over 10 years ago
Let the user choose whether to testOnBorrow or testOnReturn

Force testOnBorrow if neither is specified.

d52cc06b72f14cb020a652cbbb770e32babb62e3 authored over 10 years ago
Proper master failover detection depends on testOnBorrow

fceb7198482bc428513ab02891e1c23d07708ac9 authored over 10 years ago
Add check that JedisSentinelPool accepts closing connections before and after failover

c02c663776cae170f2b72a3070d1d536ee427e53 authored over 10 years ago
Fix race condition in JedisSentinelPoolTest

The test was issuing the failover command and only afterwards
connecting to the pub-sub channel ...

9013078d408be26dce3977a96ceaf1970ab03002 authored over 10 years ago
Add an extra sentinel server to tests

Adds an extra sentinel server monitoring the mymaster failover cluster,
makes the tests more int...

9e128b4520dbdcbeb9207bd9e2b02cbe6b14402a authored over 10 years ago
Race condition when switching masters in JedisSentinelPool

Instead of recreating GenericObjectPool, we change the
underlying factory destination host. When...

75d2ba751ba59c1cf5e13ddad84d4f0d3a82fb3e authored over 10 years ago
Merge pull request #677 from macgngsta/master

Fixed Gradle build file

4f693872b9bfd8272298409f71e96c824f71e77e authored over 10 years ago
fixed the name of archiveBaseName to archivesBaseName

c2624c6c932e3ed2fee1873fcb72d33f5816904c authored over 10 years ago
Merge pull request #675 from evenX86/patch-1

fix comment which describe LPOP from rpop method

e67a80f6948c04201f67deb622f8d451ec26b5a0 authored over 10 years ago
Update Jedis.java

edit the rpop note (just makei it Specific

088d86a60fc7cfd3ba55156fc949059b5e9ecdc9 authored over 10 years ago
Merge branch 'master' into cluster-revised

* add missing methods from BinaryJedisCluster
Conflicts:
src/main/java/redis/clients/jedis/Jedi...

5af952a676cbbd961c31e038153ce6a442aedd0c authored over 10 years ago
Merge branch 'master' of https://github.com/xadrnd/jedis into cluster-revised

Conflicts:
src/main/java/redis/clients/jedis/JedisCluster.java

5939d5bfdf30b361083692b8707819b880048663 authored over 10 years ago