Alexander Rolek
Alexander Rolek
@sheinbergon you mentioned redis cache. Have you considered just using the TTL in redis to expire the tiles? https://github.com/go-spatial/tegola/tree/master/cache/redis#properties
> We wound up disabling cache all together Nice! How's this working out so far? Are you using a CDN at all for short lived caching?
@KCC-IT-Admin what projection are your geometries in? It looks like you're trying to reproject to 3857 on the fly using `ST_Transform()`, which will work but is going to be much...
@KCC-IT-Admin can you please post your update query? If all your data is in 4326, try the following query: ```sql sql = "SELECT ST_AsMVTGeom(geom, ST_Transform(!BBOX!,4326)) AS geom, gid FROM gis.landuse...
@KCC-IT-Admin ok. I think you're close. Did you find the documentation I wrote up around this situation? https://github.com/go-spatial/tegola/tree/master/mvtprovider/postgis#example-mvt_postgis-and-map-config-for-srid-4326
@KCC-IT-Admin can you confirm that you have added the `srid` to the provider toml config? The original toml you posted did NOT have the `srid` attribute set. The TOML should...
> Ideally, Tegola would recognize when there are some file changes and auto-restart. It's technically possible, just not implemented. It might be better to send tegola a reload signal somehow...
@wroge good question. We actually debated between JSON and TOML a bit early in the development of tegola and we opted for TOML as we expected config files to generally...
@wroge want to give upgrading a try? If you clone the source code you can run the following from the repo root to upgrade: ```shell go get -u go mod...
@dBitech can you run `go mod tidy` then `go mod vendor` and see if any dependencies are being added? Everything needed to build locally should already be vendored.