All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.commons.internal.InternalCacheNames Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.commons.internal;

import java.util.Set;

public final class InternalCacheNames {

   private InternalCacheNames() {}

   // stores cluster-wide configuration
   public static final String CONFIG_STATE_CACHE_NAME = "org.infinispan.CONFIG";
   // stores cluster-wide protobuf schemas
   public static final String PROTOBUF_METADATA_CACHE_NAME = "___protobuf_metadata";
   // stores cluster-wide server scripts
   public static final String SCRIPT_CACHE_NAME = "___script_cache";

   public static final Set GLOBAL_STATE_INTERNAL_CACHES = Set.of(
         CONFIG_STATE_CACHE_NAME,
         PROTOBUF_METADATA_CACHE_NAME,
         SCRIPT_CACHE_NAME
   );

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy