Commit Graph

860 Commits

Author SHA1 Message Date
Mark Paluch
efb798c619 DATAREDIS-901 - Prepare 2.1.4 (Lovelace SR4). 2019-01-10 12:34:54 +01:00
Mark Paluch
b525496c08 DATAREDIS-901 - Updated changelog. 2019-01-10 12:34:52 +01:00
Mark Paluch
dcda0ca6e5 DATAREDIS-900 - Updated changelog. 2019-01-10 12:26:40 +01:00
Mark Paluch
7285783b9c DATAREDIS-899 - Updated changelog. 2019-01-10 11:01:23 +01:00
Mark Paluch
b6dc8bf87e DATAREDIS-918 - Enable Lettuce's global timeouts by default.
LettuceClientConfiguration now enables Lettuce's global timeouts by default to enable timeouts using the reactive API. This change prevents hanging Redis commands due to a blocked connection or when Redis is down. Timeouts are enabled through defaulting so setting ClientOptions or ClusterClientOptions overrides this behavior.

Original Pull Request: #381
2019-01-09 14:05:47 +01:00
Mark Paluch
1710bd0d8e DATAREDIS-917 - Update copyright years to 2019. 2019-01-02 14:17:18 +01:00
Mark Paluch
58b8b490bc DATAREDIS-913 - Delete multiple keys through ReactiveRedisTemplate.delete(Publisher) and unlink(Publisher).
We now delete all keys that are emitted by the source publisher when invoking delete(Publisher) and unlink(Publisher). Both methods split incoming keys into chunks of 128 keys to keep a balance between latency and the issued command count.

Previously, delete(Publisher) and unlink(Publisher) only deleted the first key.

Original Pull Request: #379
2018-12-20 10:01:56 +01:00
Mark Paluch
e31b32eb5c DATAREDIS-909 - Fix constructor creation of entities with collection-typed properties.
We now consider the property type in value conversion for constructor arguments to provide the appropriate value type. Previously, we considered the component type which converted a Collection<T> to a single T that caused downstream ClassCastException.

Original Pull Request: #378
2018-12-20 10:01:39 +01:00
Christoph Strobl
6d43ddf6d0 DATAREDIS-906 - Updated changelog. 2018-12-11 11:43:21 +01:00
chao chang
8f835b18e1 DATAREDIS-903 - Remove Javadoc for unused RedisClusterConfiguration settings.
The following configuration keys which are not used in RedisClusterConfiguration, are removed from the Javadoc.
	 * spring.redis.cluster.timeout=5
	 * spring.redis.cluster.password=foobar

Original pull request: #375.
2018-12-06 08:47:52 +01:00
Mark Paluch
9470e2bc26 DATAREDIS-885 - Prepare 2.1.3 (Lovelace SR3). 2018-11-27 13:42:18 +01:00
Mark Paluch
1038a81f64 DATAREDIS-885 - Updated changelog. 2018-11-27 13:42:15 +01:00
Mark Paluch
387f0404f4 DATAREDIS-879 - Updated changelog. 2018-11-27 12:36:52 +01:00
Mark Paluch
86a81643b0 DATAREDIS-880 - Updated changelog. 2018-11-27 11:27:26 +01:00
Mark Paluch
b10cdf400c DATAREDIS-890 - Polishing.
Add author tags. Use try-with-resources to close Jedis.

Original pull request: #373.
2018-11-23 10:17:47 +01:00
ChenGuanqun
4a4a2d6f36 DATAREDIS-890 - Randomize Redis Cluster node order before topology retrieval.
We now shuffle the set of Redis Cluster nodes before retrieving the topology. This change reduces load on the first node in the known nodes set.

Original pull request: #373.
2018-11-23 10:17:47 +01:00
Mark Paluch
69e77bf790 DATAREDIS-878 - Prepare 2.1.2 (Lovelace SR2). 2018-10-29 12:52:55 +01:00
Mark Paluch
815141410a DATAREDIS-878 - Updated changelog. 2018-10-29 12:52:52 +01:00
Mark Paluch
7e5d458387 DATAREDIS-875 - Polishing.
Reformat code.

Original pull request: #368.
2018-10-25 15:09:59 +02:00
Christoph Strobl
a547188fc3 DATAREDIS-875 - Omit MappingRedisConverter type hint for primitive type properties.
We now additionally check if the target property is a primitive type and do no longer add the type hint if so.

Original pull request: #368.
2018-10-25 15:09:59 +02:00
Mark Paluch
598875df75 DATAREDIS-872 - Polishing.
Create unit tests for RedisAtomic counter initialization. Refactor setIfAbsent(…) method to initializeIfAbsent() to not expose additional API methods.

Original pull request: #367.
2018-10-19 12:31:13 +02:00
ningwei
e6c26ad93e DATAREDIS-872 - Fix race condition in RedisAtomic counters initialization.
We now use setIfAbsent to initialize RedisAtomic counters if no initial value was given. Using setIfAbsent turns the initialization into a single atomic step that prevents race conditions of the previously check and set method that required two Redis commands.

Previously, concurrent processes (threads, external changes to Redis) could set the initial value between the existence check and the value set operation that caused the last participant to win.

Original pull request: #367.
2018-10-19 12:31:11 +02:00
Mark Paluch
11aa290ae4 DATAREDIS-874 - Polishing.
Align Javadoc tonality across RedisAtomic… types.
2018-10-16 12:06:32 +02:00
Mark Paluch
16e890a85e DATAREDIS-866 - Updated changelog. 2018-10-15 14:19:07 +02:00
Mark Paluch
5aa02ce538 DATAREDIS-867 - Updated changelog. 2018-10-15 12:46:31 +02:00
Mark Paluch
d6dc161b7e DATAREDIS-871 - Prepare 2.1.1 (Lovelace SR1). 2018-10-15 10:40:57 +02:00
Mark Paluch
afff25eede DATAREDIS-871 - Updated changelog. 2018-10-15 10:40:55 +02:00
Mark Paluch
426bd11bef DATAREDIS-861 - Prepare 2.1 GA (Lovelace). 2018-09-21 07:07:51 -04:00
Mark Paluch
f3e7995ec4 DATAREDIS-861 - Updated changelog. 2018-09-21 07:07:49 -04:00
Christoph Strobl
45cbb21849 DATAREDIS-869 - Polishing.
Rename parameters and add methods with new nomenclature.

Original Pull Request: #355
2018-09-20 10:49:20 +02:00
Mark Paluch
169b1bd174 DATAREDIS-869 - Adapt to nomenclature change about Master/Replica.
We now renamed RedisStaticMasterSlaveConfiguration and StaticMasterSlaveConnectionProvider to RedisStaticMasterReplicaConfiguration respective StaticMasterReplicaConnectionProvider to reflect changes in Redis nomenclature regarding replication.

Original Pull Request: #355
2018-09-20 10:48:46 +02:00
Mark Paluch
a7352f5612 DATAREDIS-869 - Use changed nomenclature in documentation and readme.
Original Pull Request: #355
2018-09-20 10:48:17 +02:00
Mark Paluch
b7545e50e6 DATAREDIS-868 - Include documentation about Repository Object Mapping Fundamentals.
Related ticket: DATACMNS-1374.
2018-09-18 13:22:32 +02:00
Mark Paluch
1ff6661f13 DATAREDIS-854 - Updated changelog. 2018-09-10 14:15:52 +02:00
Mark Paluch
dcb373b70e DATAREDIS-856 - Updated changelog. 2018-09-10 10:20:58 +02:00
Mark Paluch
fd03df48e1 DATAREDIS-862 - Document that Redis Repositories do not work with transactions.
Original pull request: #354.
2018-09-04 10:40:01 +02:00
Mark Paluch
0366154754 DATAREDIS-741 - Polishing.
Outline entity declaration. Fix indentation and typos.

Original pull request: #354.
2018-09-04 10:39:59 +02:00
Christoph Strobl
aaf032445b DATAREDIS-741 - Improve repository operation documentation.
Original pull request: #354.
2018-09-04 10:39:54 +02:00
Mark Paluch
5688d56eab DATAREDIS-708 - Move BGREWRITEAOF and BGSAVE tests to unit tests.
Run tests against Lettuce connection mocks to not interfere with running Redis background processes.

Original Pull Request: #347
2018-08-28 09:57:54 +02:00
Oliver Gierke
1c63d58a7b DATAREDIS-853 - Prepare 2.1 RC2 (Lovelace). 2018-08-20 10:39:43 +02:00
Oliver Gierke
8d97544b5a DATAREDIS-853 - Updated changelog. 2018-08-20 10:39:40 +02:00
Mark Paluch
33e6e8e76e DATAREDIS-844 - Updated changelog. 2018-07-27 11:45:25 +02:00
Mark Paluch
7b4a4c9cc3 DATAREDIS-845 - Updated changelog. 2018-07-26 16:23:58 +02:00
Mark Paluch
9e1ff1a747 DATAREDIS-836 - Prepare 2.1 RC1 (Lovelace). 2018-07-26 12:04:30 +02:00
Mark Paluch
70d7b30e28 DATAREDIS-836 - Updated changelog. 2018-07-26 12:04:27 +02:00
Mark Paluch
c6ecd4603d DATAREDIS-843 - Polishing.
Improve test stability to not concurrently create atomic counter instances.
2018-07-24 16:25:50 +02:00
Mark Paluch
eff0d29723 DATAREDIS-852 - Polishing.
Refactor lower/upper bound retrieval into LettuceConverters for a consistent lower/upper boundary return value. Use minus one (-1) as the upper bound index to always retrieve the last element if the upper boundary is not bounded.

Original pull request: #353.
2018-07-24 15:26:04 +02:00
michele
3a7d871119 DATAREDIS-852 - Return always a lower/upper bound range index using Range.Bound.unbounded() with Lettuce.
We now return in List, String, and ZSet commands a lower/upper bound range index to prevent NullPointerException. Previously, unbounded ranges could render null values that were attempted to cast to primitives.

Original pull request: #353.
2018-07-24 15:24:34 +02:00
Christoph Strobl
2dfe1e2b4e DATAREDIS-843 - Polishing.
Remove usage of deprecated methods, enable ignored test and move to AssertJ.

Original Pull Request: #349
2018-07-12 11:02:03 +02:00
Mark Paluch
a0d8b3a4c6 DATAREDIS-843 - Polishing.
Remove unnecessary unboxing and final keywords from arguments in method signatures.

Original Pull Request: #349
2018-07-12 11:02:03 +02:00