We are using postgis to generate MVT tiles which is binary content.
Example query:
let! tile = conn.ExecuteScalarAsync<byte[]>("select suburbs(@z,@x,@y)", param)
It would be great if we could introduce caching layer for ExecuteScalar* methods as well, as the functions are computationally expensive to calculate.
We are using postgis to generate MVT tiles which is binary content.
Example query:
It would be great if we could introduce caching layer for
ExecuteScalar*methods as well, as the functions are computationally expensive to calculate.