/** * Copyright 2016 Nikita Koksharov * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.redisson.api; import java.util.Collection; import java.util.concurrent.TimeUnit; /** * * @author Nikita Koksharov * */ public interface RKeys extends RKeysAsync { /** * Move object to another database * * @param name of object * @param database - Redis database number * @return <code>true</code> if key was moved else <code>false</code> */ boolean move(String name, int database); /** * Transfer an object from source Redis instance to destination Redis instance * * @param name of object * @param host - destination host * @param port - destination port * @param database - destination database */ void migrate(String name, String host, int port, int database); /** * Set a timeout for object. After the timeout has expired, * the key will automatically be deleted. * * @param name of object * @param timeToLive - timeout before object will be deleted * @param timeUnit - timeout time unit * @return <code>true</code> if the timeout was set and <code>false</code> if not */ boolean expire(String name, long timeToLive, TimeUnit timeUnit); /** * Set an expire date for object. When expire date comes * the key will automatically be deleted. * * @param name of object * @param timestamp - expire date in milliseconds (Unix timestamp) * @return <code>true</code> if the timeout was set and <code>false</code> if not */ boolean expireAt(String name, long timestamp); /** * Clear an expire timeout or expire date for object. * * @param name of object * @return <code>true</code> if timeout was removed * <code>false</code> if object does not exist or does not have an associated timeout */ boolean clearExpire(String name); /** * Rename object with <code>oldName</code> to <code>newName</code> * only if new key is not exists * * @param oldName - old name of object * @param newName - new name of object * @return <code>true</code> if object has been renamed successfully and <code>false</code> otherwise */ boolean renamenx(String oldName, String newName); /** * Rename current object key to <code>newName</code> * * @param currentName - current name of object * @param newName - new name of object */ void rename(String currentName, String newName); /** * Remaining time to live of Redisson object that has a timeout * * @param name of key * @return time in milliseconds * -2 if the key does not exist. * -1 if the key exists but has no associated expire. */ long remainTimeToLive(String name); /** * Update the last access time of an object. * * @param names of keys * @return count of objects were touched */ long touch(String... names); /** * Checks if provided keys exist * * @param names of keys * @return amount of existing keys */ long countExists(String... names); /** * Get Redis object type by key * * @param key - name of key * @return type of key */ RType getType(String key); /** * Get hash slot identifier for key. * Available for cluster nodes only * * @param key - name of key * @return slot number */ int getSlot(String key); /** * Get all keys by pattern using iterator. * Keys traversed with SCAN operation. Each SCAN operation loads * up to <b>10</b> keys per request. * <p> * Supported glob-style patterns: * <p> * h?llo subscribes to hello, hallo and hxllo * <p> * h*llo subscribes to hllo and heeeello * <p> * h[ae]llo subscribes to hello and hallo, but not hillo * * @param pattern - match pattern * @return Iterable object */ Iterable<String> getKeysByPattern(String pattern); /** * Get all keys by pattern using iterator. * Keys traversed with SCAN operation. Each SCAN operation loads * up to <code>count</code> keys per request. * <p> * Supported glob-style patterns: * <p> * h?llo subscribes to hello, hallo and hxllo * <p> * h*llo subscribes to hllo and heeeello * <p> * h[ae]llo subscribes to hello and hallo, but not hillo * * @param pattern - match pattern * @param count - keys loaded per request to Redis * @return Iterable object */ Iterable<String> getKeysByPattern(String pattern, int count); /** * Get all keys using iterator. Keys traversing with SCAN operation * * @return Iterable object */ Iterable<String> getKeys(); /** * Get random key * * @return random key */ String randomKey(); /** * Find keys by key search pattern * * Supported glob-style patterns: * h?llo subscribes to hello, hallo and hxllo * h*llo subscribes to hllo and heeeello * h[ae]llo subscribes to hello and hallo, but not hillo * * @param pattern - match pattern * @return collection of keys */ Collection<String> findKeysByPattern(String pattern); /** * Delete multiple objects by a key pattern. * <p> * Method executes in <b>NON atomic way</b> in cluster mode due to lua script limitations. * <p> * Supported glob-style patterns: * h?llo subscribes to hello, hallo and hxllo * h*llo subscribes to hllo and heeeello * h[ae]llo subscribes to hello and hallo, but not hillo * * @param pattern - match pattern * @return number of removed keys */ long deleteByPattern(String pattern); /** * Delete multiple objects * * @param objects of Redisson * @return number of removed keys */ long delete(RObject ... objects); /** * Delete multiple objects by name * * @param keys - object names * @return number of removed keys */ long delete(String ... keys); /** * Returns the number of keys in the currently-selected database * * @return count of keys */ long count(); /** * Delete all keys of currently selected database */ void flushdb(); /** * Delete all keys of all existing databases */ void flushall(); }