I have tiles rendered for zoom 0-13, and yet when I bring up the map with renderd running in debug mode I can see it making requests:
If I stop the renderd process, the tiles are pulled from cache instantly, but if it is running it queries the DB even when it doesn't need to. I tried increasing the minimum cache, the render_list was run last week, so if that time listed is in seconds then the cache would last 28 years, if it is in milliseconds it is only 10 days, but it has only been 5 days since render. Here is my Apache Config:
And here is renderd:
Any suggestions would be appreciated. asked 22 Aug '18, 16:36 AlanHalls |
What I'd expect it to do is sending the current tile to the user, and rendering a new one in the background. The tile in your example is "age 5.93 days". If it was less than 4 days old I bet it wouldn't render a new one. It's zoom level 8, so I don't think that "dirty" will come into play. answered 22 Aug '18, 18:56 SomeoneElse ♦ The requests are low priority render request (RenderLow) which will be issued by mod_tile if the tile is considered "old but not too old". A tile starts becoming old when its timestamp is older than the timestamp of the
(22 Aug '18, 19:08)
Frederik Ramm ♦
Thank you Frederik, that worked perfect.
(23 Aug '18, 19:13)
AlanHalls
|