diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index cb89a533..00000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1 +0,0 @@ -github: tidwall diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 79b9a4f0..29898d4f 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -21,7 +21,9 @@ If applicable, provide logs, panics, system messages to help explain your proble **Operating System (please complete the following information):** - OS: [e.g. Linux / Windows / Mac OS] - - Version [e.g. 1.19.0] + - CPU: [e.g. amd64 / arm64 / Apple Silicon / Intel] + - Version: [e.g. 1.19.0] + - Container: [e.g. Docker / None] **Additional context** Add any other context about the problem here. diff --git a/README.md b/README.md index 4a6a13d0..770d0661 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,12 @@

Slack Channel -Docker Ready +Docker Pulls

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

This README is quick start document. You can find detailed documentation at https://tile38.com.

diff --git a/tests/keys_search_test.go b/tests/keys_search_test.go index 1db10394..7f3ee971 100644 --- a/tests/keys_search_test.go +++ b/tests/keys_search_test.go @@ -48,7 +48,7 @@ func keys_KNN_basic_test(mc *mockServer) error { {"NEARBY", "mykey", "LIMIT", 10, "IDS", "POINT", 20, 20, 4000000}, {"[0 [2 3 5 1 4 6]]"}, {"NEARBY", "mykey", "LIMIT", 10, "IDS", "POINT", 20, 20, 1500000}, {"[0 [2 3 5]]"}, {"NEARBY", "mykey", "LIMIT", 10, "DISTANCE", "POINT", 52, 13, 100}, {`[0 [[6 {"type":"Point","coordinates":[13,52]} 0]]]`}, - {"NEARBY", "mykey", "LIMIT", 10, "DISTANCE", "POINT", 52.1, 13.1, 100000}, {`[0 [[6 {"type":"Point","coordinates":[13,52]} 13053.885940801563]]]`}, + {"NEARBY", "mykey", "LIMIT", 10, "POINT", 52.1, 13.1, 100000}, {`[0 [[6 {"type":"Point","coordinates":[13,52]}]]]`}, }) }