mtmail

Results 131 comments of mtmail

@irfn I'm using this library with 1.4.0 already, I guess not the feature you mention. Can you create a separate github issue?

Rebased, squashed, and tests passing. I set version to `0.4.0` and added a changelog entry.

My fork works with Kong 2.x

I have a branch that added those and I use it with Kong 1.1 and 1.4. https://github.com/kontena/kong-client-ruby/compare/master...mtmail:kong1dot1?expand=1

PR created now. Not even sure why I didn't do that back in April.

You can delete the *.csv.gz files, those are for different versions of Nominatim and contain the same data, just formatted differently. You can import the *.sql.gz file with https://nominatim.org/release-docs/latest/admin/Import/#wikipediawikidata-rankings

In Nominatim's `database_import.py` I only see ```python # Create extensions. with conn.cursor() as cur: cur.execute('CREATE EXTENSION IF NOT EXISTS hstore') cur.execute('CREATE EXTENSION IF NOT EXISTS postgis') postgis_version = conn.postgis_version_tuple() if...

In your Docker image, are you downloading a stable release (from https://nominatim.org/release) or doing a pull/copy/clone from github? Both works, but I can give better instructions. The stable releases don't...

The file is named `country_grid` on the nominatim.org server, but `country_osm_grid` when you install it. I never noticed and was equally confused. ``` docker run -it mediagis/nominatim:4.4 /bin/bash find /...

Nominatim doesn't use pooling, or rather it does it's own implementation to reuse connections. If you want to experiement the relevant connection logic is in https://github.com/osm-search/Nominatim/blob/master/nominatim/db/async_connection.py