Paul Redmond
Paul Redmond
@wmhilton any updates/progress on the native branch?
You could also consider using (supporting?) the anonymous namespace in jakt.
Could tile38 be made to understand a geojson point with the radius specified as a property?
Yeah I meant your first example.
I'm inclined to say using point and properties is the better way to go. It doesn't look like the circle proposal is going anywhere.. How much work would it be...
I have code that will convert a point like ``` { "geometry": { "coordinates": [ xxxx, yyyy ], "type": "Point" }, "properties": { "id": "212c7a42-3b27-4b01-adca-b8891380d6a1", "radius": 50 }, "type": "Feature"...
ping?
As mentioned above, in go-redis you'll want to call: ``` client.Process(redis.NewStringCmd("OUTPUT", "json")) ``` If the client disconnects you have to do it again. go-redis now has an OnConnect handler which...
Adding a waitgroup and waiting for the goroutine in run to finish fixes the race. ``` diff --git a/disposable_redis.go b/disposable_redis.go index e764be9..cab9157 100644 --- a/disposable_redis.go +++ b/disposable_redis.go @@ -12,6 +12,7...