Live data from Hacker News

Redis 3.2.0 is out

antirez.com

41–50 of 69 posts

Re: Redis 3.2.0 is out

#41
post #3

I like their new GEO sorted set with latitude and longitude. Can someone point me to a [reasonably priced] geocoding database to display nearest Town, Region (only where appropriate), Country (in English) based on latitude and longitude?

Wouldn’t it be possible to get this data from Openstreetmap?

Re: Redis 3.2.0 is out

#42
post #35
post #28

Earlier quoted context omitted.

Thanks, I really receive good sentiments from the community. I've the feeling that this is not due just to the fact that many developers find Redis useful. It has very serious limits like many other softwares. It is that so far Redis was never proposed as "The Shit", the silver bullet that will save you from your data problem. Is just something I and the other contribs try to do with love, without pretending we are g…

Unfortunately you can often oversell to the people who pay developers.

Which is one reason why strong technical cofounders are so exceedingly valuable.

Re: Redis 3.2.0 is out

#43
post #17

Just realised that http://download.redis.io/ is not available under https (neither is http://redis.io ). It may be worth downloading it from github.

Or you could download from redis.io and check the hashes we publish at Github: https://github.com/antirez/redis-hashes

Have you looked at Let's Encrypt for the redis.io domain?

Re: Redis 3.2.0 is out

#44
post #9

Earlier quoted context omitted.

Geo is insanely useful when you're after stuff within x miles of a known location - so a lot of mobile apps. My problem with many existing geo implementations is they assume that a circular radius is the query type I care about, and longitude and latitude is sufficient to know where I actually am in terms of jurisdiction, etc. Being able to add fine grained polygons to represent national, state, county or town bounda…

Hey Paul, we have this feature added as a Lua script, but adding it in a native way could be interesting actually. Itamar Haber wrote the Lua script and was pushing for adding it in a native way, I wanted to check after the release the actual demand for it.

The ability to query with polygons defined by transit isochrones would be broadly useful.

Re: Redis 3.2.0 is out

#45
post #43
post #17

Earlier quoted context omitted.

Or you could download from redis.io and check the hashes we publish at Github: https://github.com/antirez/redis-hashes

Have you looked at Let's Encrypt for the redis.io domain?

Yes, I hope to implement it soon!

Re: Redis 3.2.0 is out

#46
post #27
post #18

Earlier quoted context omitted.

In fact it's quite possibly the only piece of software that HN hasn't bashed or harshly criticized so far :)

Haproxy is there too...

On the same note, I'd put nginx high up there. Aside from the occasional config funkiness (which I can forgive them for) it's an amazingly useful, versatile and efficient tool. Can't complain too much about it. I think nginx and redis are my two favorite often used pieces stack.

Re: Redis 3.2.0 is out

#47
post #3

I like their new GEO sorted set with latitude and longitude. Can someone point me to a [reasonably priced] geocoding database to display nearest Town, Region (only where appropriate), Country (in English) based on latitude and longitude?

It's a big deal to run (takes lots of hardware), but I really like nominatim. I've played with them all and it's the one I've settled on. Helps that I run it on a pair of OSM tile rendering and routing servers. Only downside to nominatim is the space requirement (~ 700gb), and the fact that it takes forever to build the database (24 - 36 hours on 256gb ram machines w/ SSDs....)

Re: Redis 3.2.0 is out

#48
post #3

I like their new GEO sorted set with latitude and longitude. Can someone point me to a [reasonably priced] geocoding database to display nearest Town, Region (only where appropriate), Country (in English) based on latitude and longitude?

Wouldn’t it be possible to get this data from Openstreetmap?

More specifically, the OSM project Nominatim does Address->Lat,Lon

http://wiki.openstreetmap.org/wiki/Nominatim

Re: Redis 3.2.0 is out

#49
post #33
post #18

Earlier quoted context omitted.

In fact it's quite possibly the only piece of software that HN hasn't bashed or harshly criticized so far :)

The attemps at a distributed version were harshely criticized... What I like about Redis is that, like a mechanical watch, the insides are as elegant and nice as the user experience.

For reference, see the posts at https://aphyr.com/tags/Redis

Re: Redis 3.2.0 is out

#50
post #3

I like their new GEO sorted set with latitude and longitude. Can someone point me to a [reasonably priced] geocoding database to display nearest Town, Region (only where appropriate), Country (in English) based on latitude and longitude?

I've used GeoNames (geonames.org) for a few projects.

I can second GeoNames. Sometimes it's hard to beat free. We take a couple files from their dump[1] (primarily the city data) and import into a database. We can then geolocate a lat/long to the closest city.

1. http://download.geonames.org/export/dump/

Post reply on HN