Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,我发现 Redis 的系统服务命令是TIME,我可以使用这个命令来获取 Redis 服务器的系统时间。
但是我在绝地武士中找不到相同的命令。
在java中,如何获取Redis服务器的系统时间?
并且 TIME 命令返回多批回复,我如何获取 TIME 的值,并在我的 Java 客户端中使用它?
如果你有例子,非常感谢!
好的,我有一个解决办法是:
Object o = jedis.eval("return redis.call('time')[1]"); 日志(TAG,"o-->"+o.toString());
可以获取Redis服务器的系统时间!