rain
2024-08-17 61b91c80f3d7526eb3caa04e6e781e591f48ec93
src/main/java/com/dji/sample/component/redis/RedisOpsUtils.java
@@ -108,13 +108,6 @@
     * @return
     */
    public static Object get(String key) {
        // Execute the select command to choose the Redis database
        redisTemplate.execute((RedisCallback<Object>) connection -> {
            connection.select(1); // Choose database index 1
            return null;
        });
        // Now perform the get operation
        return redisTemplate.opsForValue().get(key);
    }