This is an automated email from the ASF dual-hosted git repository.

nizhikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new ad733dd  IGNITE-15756 CacheMode#LOCAL deprecated for removal (#9515)
ad733dd is described below

commit ad733dd256e3bcb5ace73a6f47185b0a5ec0e127
Author: Nikolay <[email protected]>
AuthorDate: Fri Oct 22 15:59:30 2021 +0300

    IGNITE-15756 CacheMode#LOCAL deprecated for removal (#9515)
---
 modules/core/src/main/java/org/apache/ignite/cache/CacheMode.java | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/modules/core/src/main/java/org/apache/ignite/cache/CacheMode.java 
b/modules/core/src/main/java/org/apache/ignite/cache/CacheMode.java
index b723b6c..5a82b25 100644
--- a/modules/core/src/main/java/org/apache/ignite/cache/CacheMode.java
+++ b/modules/core/src/main/java/org/apache/ignite/cache/CacheMode.java
@@ -35,7 +35,11 @@ public enum CacheMode {
      * querying, etc... This mode is very useful when caching read-only data
      * or data that automatically expires at a certain interval and
      * then automatically reloaded from persistence store.
+     *
+     * @deprecated Use {@link #REPLICATED} or {@link #PARTITIONED} modes 
instead.
+     * Please, be aware this API will be removed in the next releases.
      */
+    @Deprecated
     LOCAL,
 
     /**

Reply via email to