com.pig4cloud.plugin.cache.support.CacheMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of multilevel-cache-spring-boot-starter Show documentation
Show all versions of multilevel-cache-spring-boot-starter Show documentation
support L1 caffeine and L2 redis cache
package com.pig4cloud.plugin.cache.support;
import lombok.AllArgsConstructor;
import lombok.Data;
import java.io.Serializable;
/**
* @author fuwei.deng
* @version 1.0.0
*/
@Data
@AllArgsConstructor
public class CacheMessage implements Serializable {
private String cacheName;
private Object key;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy