40 lines
989 B
Java
40 lines
989 B
Java
package cc.fascinated.model.cache;
|
|
|
|
import cc.fascinated.common.CachedResponse;
|
|
import cc.fascinated.model.player.Player;
|
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
import lombok.Getter;
|
|
import lombok.NoArgsConstructor;
|
|
import lombok.Setter;
|
|
import org.springframework.data.annotation.Id;
|
|
import org.springframework.data.redis.core.RedisHash;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.UUID;
|
|
|
|
/**
|
|
* A cacheable {@link Player}.
|
|
*
|
|
* @author Braydon
|
|
*/
|
|
@Setter @Getter
|
|
@NoArgsConstructor
|
|
@RedisHash(value = "player", timeToLive = 60L * 60L) // 1 hour (in seconds)
|
|
public class CachedPlayer extends CachedResponse implements Serializable {
|
|
/**
|
|
* The unique id of the player.
|
|
*/
|
|
@JsonIgnore
|
|
@Id private UUID uniqueId;
|
|
|
|
/**
|
|
* The player to cache.
|
|
*/
|
|
private Player player;
|
|
|
|
public CachedPlayer(UUID uniqueId, Player player) {
|
|
super(Cache.defaultCache());
|
|
this.uniqueId = uniqueId;
|
|
this.player = player;
|
|
}
|
|
} |