我有EmployeeDto
一个Object
,它没有与数据库同步。
我想放入EmployeeDto
Redis 缓存中。我已经通过一个示例,我可以看到数据库实体正在使用 Redis 缓存进行缓存,但是我们如何在 Redis 缓存中存储和检索非数据库实体?
@Getter
@Setter
public class EmployeeDto {
private long employeeId;
private String requestId;
private String timestamp;
private String employeeName;
}