t

scredis.commands

GeoCommands

trait GeoCommands extends AnyRef

Self Type
GeoCommands with NonBlockingConnection
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GeoCommands
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. def geoAdd(key: String, geoAddEntries: GeoAddEntry*): Future[Long]

    Adds the specified geospatial items (longitude, latitude, name) to the specified key.

    Adds the specified geospatial items (longitude, latitude, name) to the specified key. Data is stored into the key as a sorted set, in a way that makes it possible to later retrieve items using a query by radius with the GEORADIUS or GEORADIUSBYMEMBER commands.

    The command takes arguments in the standard format x,y so the longitude must be specified before the latitude. There are limits to the coordinates that can be indexed: areas very near to the poles are not indexable. The exact limits, as specified by EPSG:900913 / EPSG:3785 / OSGEO:41001 are the following:

    Valid longitudes are from -180 to 180 degrees.
    Valid latitudes are from -85.05112878 to 85.05112878 degrees.

    The command will report an error when the user attempts to index coordinates outside the specified ranges.

    key

    Name of a sortedSet to which points will be added

    geoAddEntries

    points description consisting of 3 elements (longitude, latitude, name)

    returns

    The number of elements added to the sorted set, not including elements already existing for which the score was updated.

    Example:
    1. client.geoAdd("GeoSet", GeoAddEntry(1.11, 2.22, "Paris"), GeoAddEntry(5.55, 6.66, "Berlin"))

    Since

    3.2.0

    Exceptions thrown

    scredis.exceptions.RedisErrorResponseException if coordinates are out of expected range.

    See also

    https://redis.io/commands/geoadd

  10. def geoDist(key: String, member1: String, member2: String, unit: Option[GeoDistUnit] = None): Future[Option[Double]]

    Return the distance between two members in the geospatial index represented by the sorted set.

    Return the distance between two members in the geospatial index represented by the sorted set.

    Given a sorted set representing a geospatial index, populated using the GEOADD command, the command returns the distance between the two specified members in the specified unit.

    Units: scredis.protocol.requests.GeoDistUnit

    The distance is computed assuming that the Earth is a perfect sphere, so errors up to 0.5% are possible in edge cases.

    client.geoAdd("GeoSet", GeoAddEntry(12.123, -3.321, "Chicago"), GeoAddEntry(-11.4, 3.99, "Prague"))
    client.geoDist("GeoSet", "Chicago", "Prague")
    key

    Name of a sortedSet from which members will be used

    member1

    name present in 'key' set

    member2

    name present in 'key' set

    unit

    Measure unit used in response scredis.protocol.requests.GeoDistUnit

    returns

    distance between two members in a set in specified measure unit or None if any of members not found in a set.

    Since

    3.2.0

    See also

    https://redis.io/commands/geodist

  11. def geoHash(key: String, members: String*): Future[List[Option[String]]]

    Return valid Geohash strings representing the position of one or more elements in a sorted set value representing a geospatial index (where elements were added using GEOADD).

    Return valid Geohash strings representing the position of one or more elements in a sorted set value representing a geospatial index (where elements were added using GEOADD).

    The command returns 11 characters Geohash strings, so no precision is loss compared to the Redis internal 52 bit representation. The returned Geohashes have the following properties:

    They can be shortened removing characters from the right. It will lose precision but will still point to the same area. It is possible to use them in geohash.org URLs such as http://geohash.org/<geohash-string>. Strings with a similar prefix are nearby, but the contrary is not true, it is possible that strings with different prefixes are nearby too.

    client.geoAdd("GeoSet", GeoAddEntry(1.11, 2.22, "Warsaw"))
    client.geoHash("GeoSet", "Warsaw", "unknownloc")
    key

    Name of a sortedSet from which members will be used

    members

    sequence of name entries present in set.

    returns

    List with calculated geohash corresponding to each present member and None for not found members.

    Since

    3.2.0

    See also

    https://redis.io/commands/geohash

  12. def geoPos(key: String, members: String*): Future[List[Option[(Double, Double)]]]

    Return the positions (longitude,latitude) of all the specified members of the geospatial index represented by the sorted set at key.

    Return the positions (longitude,latitude) of all the specified members of the geospatial index represented by the sorted set at key.

    Given a sorted set representing a geospatial index, populated using the GEOADD command, it is often useful to obtain back the coordinates of specified members. When the geospatial index is populated via GEOADD the coordinates are converted into a 52 bit geohash, so the coordinates returned may not be exactly the ones used in order to add the elements, but small errors may be introduced.

    client.geoAdd("GeoSet", GeoAddEntry(10, 10, "Paris"))
    client.geoPos("GeoSet", "Paris", "Unknown")
    key

    Name of a sortedSet from which members will be used

    members

    sequence of name entries present in set.

    returns

    list where each entry represents coordinates (longitude, latitude) of corresponding member name or None if member is not found.

    Since

    3.2.0

    See also

    https://redis.io/commands/geopos

  13. def geoRadius(key: String, longitude: Double, latitude: Double, radius: Double, radiusUnit: GeoDistUnit): Future[List[String]]

    Return the members of a sorted set populated with geospatial information using GEOADD, which are within the borders of the area specified with the center location and the maximum distance from the center (the radius).

    Return the members of a sorted set populated with geospatial information using GEOADD, which are within the borders of the area specified with the center location and the maximum distance from the center (the radius).

    The common use case for this command is to retrieve geospatial items near a specified point not farther than a given amount of meters (or other units). This allows, for example, to suggest mobile users of an application nearby places.

    client.geoAdd("GeoSet", GeoAddEntry(1.111, 1.5, "Tokyo"), GeoAddEntry(1.222, 1.6, "Kyoto"), GeoAddEntry(1.5, 1.333, "Nagasaki"))
    client.geoRadius("GeoSet", 1, 1, 3500, GeoDistUnit.km)
    key

    Name of a sortedSet in which points will be searched.

    longitude

    First coordinate of a point.

    latitude

    Second coordinate of a point.

    radius

    Distance between given point and an edge of a circle. Specified in 'radiusUnit' units.

    radiusUnit

    Units of measure in which radius is expressed scredis.protocol.requests.GeoDistUnit

    returns

    List of member names from 'key' set.

    Since

    3.2.0

    See also

    https://redis.io/commands/georadius

  14. def geoRadiusByMember(key: String, member: String, radius: Double, radiusUnit: GeoDistUnit): Future[List[String]]

    This command is exactly like GEORADIUS with the sole difference that instead of taking, as the center of the area to query, a longitude and latitude value, it takes the name of a member already existing inside the geospatial index represented by the sorted set.

    This command is exactly like GEORADIUS with the sole difference that instead of taking, as the center of the area to query, a longitude and latitude value, it takes the name of a member already existing inside the geospatial index represented by the sorted set.

    The position of the specified member is used as the center of the query.

    key

    Name of a sortedSet in which points will be searched.

    member

    Name present in 'key' set

    radius

    Radius in which returned elements are found. Specified in 'radiusUnit' units.

    radiusUnit

    Units of measure in which radius is expressed scredis.protocol.requests.GeoDistUnit

    returns

    List of member names from 'key' set.

    Since

    3.2.0

    Exceptions thrown

    scredis.exceptions.RedisErrorResponseException if member is not found in set.

    Note

    scredis.commands.GeoCommands.geoRadius

    client.geoAdd("GeoSet", GeoAddEntry(1.111, 1.5, "Tokyo"), GeoAddEntry(1.222, 1.6, "Kyoto"), GeoAddEntry(1.5, 1.333, "Nagasaki"))
    client.geoRadiusByMember("GeoSet", "Tokyo", 60000, GeoDistUnit.km)
    See also

    https://redis.io/commands/georadiusbymember

  15. def geoRadiusByMemberComplex(key: String, member: String, radius: Double, radiusUnit: GeoDistUnit, sort: Option[GeoSortOrder] = None, count: Option[Int] = None): Future[List[RadiusResult]]
  16. def geoRadiusComplex(key: String, longitude: Double, latitude: Double, radius: Double, radiusUnit: GeoDistUnit, sort: Option[GeoSortOrder] = None, count: Option[Int] = None): Future[List[RadiusResult]]
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped