Home / 1.32.1
Name Modified Size InfoDownloads / Week
Parent folder
tile38-1.32.1-windows-amd64.zip 2023-11-20 22.8 MB
tile38-1.32.1-linux-arm64.tar.gz 2023-11-20 21.1 MB
tile38-1.32.1-linux-arm.tar.gz 2023-11-20 21.3 MB
tile38-1.32.1-linux-amd64.tar.gz 2023-11-20 22.7 MB
tile38-1.32.1-freebsd-amd64.zip 2023-11-20 22.6 MB
tile38-1.32.1-darwin-amd64.zip 2023-11-20 22.4 MB
1.32.1 source code.tar.gz 2023-11-20 2.8 MB
1.32.1 source code.zip 2023-11-20 2.8 MB
README.md 2023-11-20 3.5 kB
Totals: 9 Items   138.3 MB 0

Tile38

Tile38 is an open source (MIT licensed), in-memory geolocation data store, spatial index, and real-time geofence. It supports a variety of object types including lat/lon points, bounding boxes, XYZ tiles, Geohashes, and GeoJSON.

You can find detailed documentation in the README.

Nearby Within Intersects Geofencing Roaming Geofences

Changelog

[1.32.1] = 2023-11-20

Fixed

  • [#711]: Updated dependencies to address security vulnerabilities (@hcmf-wice)
  • [#706]: Add support for 'none' authentication for kafka while still allowing SSL (@Kilowhisky)
  • [#702]: Fix AWS SQS base domain parsing for China region (@LLluma)

[1.32.0] = 2023-07-31

Added

  • [#686]: Support the ROLE command (@Kilowhisky)

Fixed

  • [#698]: Allow AUTH while loading data (@Kilowhisky)
  • [#694]: Allow PING in pubsub (@Kilowhisky)
  • [#692]: Properly support replica_announce properties (@Kilowhisky)
  • [#691]: HEALTHZ should not be AUTH protected (@Kilowhisky)
  • [#685]: Heap size not coming down after objects are removed (@Mukund2900, @iwpnd)
  • 0144ca6: Fix missing lock

Getting Started

Docker

docker pull tile38/tile38
docker run -p 9851:9851 tile38/tile38

Visit the Tile38 Docker Hub Page for more information.

OS X

To get started on OSX run the following in a terminal:

:::sh
curl -L  https://github.com/tidwall/tile38/releases/download/1.32.1/tile38-1.32.1-darwin-amd64.zip -o tile38-1.32.1-darwin-amd64.zip
unzip tile38-1.32.1-darwin-amd64.zip
cd tile38-1.32.1-darwin-amd64
./tile38-server

Linux

To get started on Linux run the following in a terminal:

:::sh
curl -L  https://github.com/tidwall/tile38/releases/download/1.32.1/tile38-1.32.1-linux-amd64.tar.gz -o tile38-1.32.1-linux-amd64.tar.gz
tar xzvf tile38-1.32.1-linux-amd64.tar.gz
cd tile38-1.32.1-linux-amd64
./tile38-server

FreeBSD

To get started on FreeBSD run the following in a terminal:

:::sh
curl -L  https://github.com/tidwall/tile38/releases/download/1.32.1/tile38-1.32.1-freebsd-amd64.tar.gz -o tile38-1.32.1-freebsd-amd64.tar.gz
tar xzvf tile38-1.32.1-freebsd-amd64.tar.gz
cd tile38-1.32.1-freebsd-amd64
./tile38-server

Playing with Tile38

Open another terminal:

:::sh
./tile38-cli set fleet truck point 33.5 -115.5
./tile38-cli get fleet truck
Source: README.md, updated 2023-11-20