Uses of Class
redis.clients.jedis.params.SortingParams
Packages that use SortingParams
Package
Description
This package contains the interfaces that contain methods representing Redis core commands.
This package contains the classes that represent optional parameters of core Redis commands.
-
Uses of SortingParams in redis.clients.jedis
Methods in redis.clients.jedis with parameters of type SortingParamsModifier and TypeMethodDescriptionfinal CommandObject<List<byte[]>> CommandObjects.sort(byte[] key, SortingParams sortingParams) final CommandObject<Long> CommandObjects.sort(byte[] key, SortingParams sortingParams, byte[] dstkey) final CommandObject<List<String>> CommandObjects.sort(String key, SortingParams sortingParams) final CommandObject<Long> CommandObjects.sort(String key, SortingParams sortingParams, String dstkey) List<byte[]> Jedis.sort(byte[] key, SortingParams sortingParams) Sort a Set or a List accordingly to the specified parameters.longJedis.sort(byte[] key, SortingParams sortingParams, byte[] dstkey) Sort a Set or a List accordingly to the specified parameters and store the result at dstkey.Jedis.sort(String key, SortingParams sortingParams) Sort a Set or a List accordingly to the specified parameters.longJedis.sort(String key, SortingParams sortingParams, String dstkey) Sort a Set or a List accordingly to the specified parameters and store the result at dstkey.MultiNodePipelineBase.sort(byte[] key, SortingParams sortingParams) MultiNodePipelineBase.sort(byte[] key, SortingParams sortingParams, byte[] dstkey) MultiNodePipelineBase.sort(String key, SortingParams sortingParams) MultiNodePipelineBase.sort(String key, SortingParams sortingParams, String dstKey) Pipeline.sort(byte[] key, SortingParams sortingParams) Pipeline.sort(byte[] key, SortingParams sortingParams, byte[] dstkey) Pipeline.sort(String key, SortingParams sortingParams) Pipeline.sort(String key, SortingParams sortingParams, String dstKey) TransactionBase.sort(byte[] key, SortingParams sortingParams) TransactionBase.sort(byte[] key, SortingParams sortingParams, byte[] dstkey) TransactionBase.sort(String key, SortingParams sortingParams) TransactionBase.sort(String key, SortingParams sortingParams, String dstKey) List<byte[]> UnifiedJedis.sort(byte[] key, SortingParams sortingParams) longUnifiedJedis.sort(byte[] key, SortingParams sortingParams, byte[] dstkey) UnifiedJedis.sort(String key, SortingParams sortingParams) longUnifiedJedis.sort(String key, SortingParams sortingParams, String dstkey) final CommandObject<List<byte[]>> CommandObjects.sortReadonly(byte[] key, SortingParams sortingParams) final CommandObject<List<String>> CommandObjects.sortReadonly(String key, SortingParams sortingParams) List<byte[]> Jedis.sortReadonly(byte[] key, SortingParams sortingParams) Jedis.sortReadonly(String key, SortingParams sortingParams) MultiNodePipelineBase.sortReadonly(byte[] key, SortingParams sortingParams) MultiNodePipelineBase.sortReadonly(String key, SortingParams sortingParams) Pipeline.sortReadonly(byte[] key, SortingParams sortingParams) Pipeline.sortReadonly(String key, SortingParams sortingParams) TransactionBase.sortReadonly(byte[] key, SortingParams sortingParams) TransactionBase.sortReadonly(String key, SortingParams sortingParams) List<byte[]> UnifiedJedis.sortReadonly(byte[] key, SortingParams sortingParams) UnifiedJedis.sortReadonly(String key, SortingParams sortingParams) -
Uses of SortingParams in redis.clients.jedis.commands
Methods in redis.clients.jedis.commands with parameters of type SortingParamsModifier and TypeMethodDescriptionList<byte[]> KeyBinaryCommands.sort(byte[] key, SortingParams sortingParams) longKeyBinaryCommands.sort(byte[] key, SortingParams sortingParams, byte[] dstkey) KeyCommands.sort(String key, SortingParams sortingParameters) Sort a Set or a List accordingly to the specified parameters.longKeyCommands.sort(String key, SortingParams sortingParameters, String dstkey) Similar toSORTbut store the result indstkey.KeyPipelineBinaryCommands.sort(byte[] key, SortingParams sortingParams) KeyPipelineBinaryCommands.sort(byte[] key, SortingParams sortingParams, byte[] dstkey) KeyPipelineCommands.sort(String key, SortingParams sortingParams) KeyPipelineCommands.sort(String key, SortingParams sortingParams, String dstkey) List<byte[]> KeyBinaryCommands.sortReadonly(byte[] key, SortingParams sortingParams) KeyCommands.sortReadonly(String key, SortingParams sortingParams) Read-only variant of theSORTcommand.KeyPipelineBinaryCommands.sortReadonly(byte[] key, SortingParams sortingParams) KeyPipelineCommands.sortReadonly(String key, SortingParams sortingParams) -
Uses of SortingParams in redis.clients.jedis.params
Methods in redis.clients.jedis.params that return SortingParamsModifier and TypeMethodDescriptionSortingParams.alpha()Sort lexicographicaly.SortingParams.asc()Get the Sorting in Ascending Order.SortingParams.by(byte[] pattern) Sort by weight in keys.Sort by weight in keys.SortingParams.desc()Get the Sorting in Descending Order.SortingParams.get(byte[]... patterns) Retrieving external keys from the result of the search.Retrieving external keys from the result of the search.SortingParams.limit(int start, int count) Limit the Numbers of returned Elements.SortingParams.nosort()No sorting.SortingParams.sortingOrder(SortingOrder order) Get by the Sorting Order.