提问人:Michele Letizia 提问时间:11/16/2023 最后编辑:Michele Letizia 更新时间:11/16/2023 访问量:19
NOPERM 此用户无权运行“hmset”命令
NOPERM this user has no permissions to run the 'hmset' command
问:
我正在尝试使用spring-boot-starter-data-redis在REDIS实例上编写redis对象。 在 Redis 上,禁用了 hmset,我必须使用 hset 保存对象。
但我只运行这个:
repository.save(myObject);
其中存储库:
@Repository
public interface repository extends CrudRepository<myObject, String> {}
和 myObject:
@RedisHash
public class myObject{
@Id
private String sessionId;
...
}
如何强制spring lib使用hset而不是hmset?
谢谢 迈克
答: 暂无答案
评论