Uses of Class
redis.clients.jedis.params.GeoAddParams
Packages that use GeoAddParams
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 GeoAddParams in redis.clients.jedis
Methods in redis.clients.jedis with parameters of type GeoAddParamsModifier and TypeMethodDescriptionfinal CommandObject<Long> CommandObjects.geoadd(byte[] key, GeoAddParams params, Map<byte[], GeoCoordinate> memberCoordinateMap) final CommandObject<Long> CommandObjects.geoadd(String key, GeoAddParams params, Map<String, GeoCoordinate> memberCoordinateMap) longJedis.geoadd(byte[] key, GeoAddParams params, Map<byte[], GeoCoordinate> memberCoordinateMap) longJedis.geoadd(String key, GeoAddParams params, Map<String, GeoCoordinate> memberCoordinateMap) MultiNodePipelineBase.geoadd(byte[] key, GeoAddParams params, Map<byte[], GeoCoordinate> memberCoordinateMap) MultiNodePipelineBase.geoadd(String key, GeoAddParams params, Map<String, GeoCoordinate> memberCoordinateMap) Pipeline.geoadd(byte[] key, GeoAddParams params, Map<byte[], GeoCoordinate> memberCoordinateMap) Pipeline.geoadd(String key, GeoAddParams params, Map<String, GeoCoordinate> memberCoordinateMap) TransactionBase.geoadd(byte[] key, GeoAddParams params, Map<byte[], GeoCoordinate> memberCoordinateMap) TransactionBase.geoadd(String key, GeoAddParams params, Map<String, GeoCoordinate> memberCoordinateMap) longUnifiedJedis.geoadd(byte[] key, GeoAddParams params, Map<byte[], GeoCoordinate> memberCoordinateMap) longUnifiedJedis.geoadd(String key, GeoAddParams params, Map<String, GeoCoordinate> memberCoordinateMap) -
Uses of GeoAddParams in redis.clients.jedis.commands
Methods in redis.clients.jedis.commands with parameters of type GeoAddParamsModifier and TypeMethodDescriptionlongGeoBinaryCommands.geoadd(byte[] key, GeoAddParams params, Map<byte[], GeoCoordinate> memberCoordinateMap) longGeoCommands.geoadd(String key, GeoAddParams params, Map<String, GeoCoordinate> memberCoordinateMap) Adds the specified geospatial items (in memberCoordinateMap) to the specified key.GeoPipelineBinaryCommands.geoadd(byte[] key, GeoAddParams params, Map<byte[], GeoCoordinate> memberCoordinateMap) GeoPipelineCommands.geoadd(String key, GeoAddParams params, Map<String, GeoCoordinate> memberCoordinateMap) -
Uses of GeoAddParams in redis.clients.jedis.params
Methods in redis.clients.jedis.params that return GeoAddParamsModifier and TypeMethodDescriptionGeoAddParams.ch()Modify the return value from the number of new elements added, to the total number of elements changedstatic GeoAddParamsGeoAddParams.geoAddParams()GeoAddParams.nx()Don't update already existing elements.GeoAddParams.xx()Only update elements that already exist.