You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_Project derived from [JedisExtraUtils](https://github.com/oscar-besga-panel/JedisExtraUtils) for [Redis database](httpd://redis.io)_
10
+
_Project derived from [JedisExtraUtils](https://github.com/oscar-besga-panel/JedisExtraUtils), which uses [Jedis](https://github.com/redis/jedis); for [Redis database](httpd://redis.io)_
11
11
12
12
# Introduction to Valkey-Java-Extrautils
13
13
@@ -24,11 +24,11 @@ These include
24
24
the grip and they can proceed to get the lock, without poolling
25
25
* Semaphores
26
26
* CountDownLatch: count down to open the flood gates and allow all waiters to progress
27
-
* Collections: redis-backed implementation of Java collection interfaces, with all data stored on Redis, like
27
+
* Collections: redis-backed implementation of Java collection interfaces, with all data stored on valkey, like
28
28
* Lists
29
29
* Map
30
30
* Set
31
-
* Iterator: free yourself from Redis SCAN internal hassle and use easy Java iterables or iterators for these operations:
31
+
* Iterator: free yourself from valkey SCAN internal hassle and use easy Java iterables or iterators for these operations:
32
32
* HScanIterable: To scan maps
33
33
* ScanIterable: To scan all keys
34
34
* SScanIterable: To scan sets
@@ -48,7 +48,7 @@ All this classes use a Jedis pool connection to make them thread-safe and more e
48
48
It's intended to make possible distributes locking and synchronization, share data across process and aid with distributed computing.
49
49
50
50
All classes have tests, unit and functional ones.
51
-
You can test the latter ones by activating them and configuring your own redis server, to test that all the classes work properly in theory and practice.
51
+
You can test the latter ones by activating them and configuring your own valkey server, to test that all the classes work properly in theory and practice.
52
52
There are **more than 630 working tests**, so the code is pretty secure.
0 commit comments