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

io.vertx.tp.plugin.redis.cache.ZERO Maven / Gradle / Ivy

The newest version!
package io.vertx.tp.plugin.redis.cache;

/**
 * @author Lang
 */
interface CacheMsg {
    String HIT_FAILURE = "[ Cache ] L1: The key `{0}` has not been Hit !!!.";
    String HIT_SECONDARY = "[ Cache ] L1: Read data by nested key `{0}` with original `{1}`.";
    String HIT_DATA = "[ Cache ] L1:Successfully Hit !!! ---> cache data by `{0}`.";
    String HIT_REMOVE = "[ Cache ] L1:Erase size = {0}, keys: `{1}` Successfully.";

    String DATA_REFRESHED = "[ Cache ] L1:The key `{0}` has been refreshed. ";
    String DATA_TREE = "[ Cache ] L1:The key `{0}` has been synced on tree.";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy