typelevel / skunk

A data access library for Scala + Postgres.
https://typelevel.org/skunk/
MIT License
1.58k stars 161 forks source link

Idea: Statement Caching #496

Open tpolecat opened 3 years ago

tpolecat commented 3 years ago

Skunk closes prepared statements after use, which ensures that sessions don't build up an unbounded number of open statements on the server. This is good in principle, but it means that we have to do a Parse exchange for every prepared statement, even if an identical one was previously prepared on the same Session.

An alternative way to do this would be to have an LRU cache from Statement to StatementId on each Session.

On both access and insert there may be cache evictions, so each Session needs to track this set as well.

A consequence here is that .prepare can now return an F[PreparedCommand[...]] rather than a Resource[F, PreparedCommand[...]] (analogously for queries). This seems like a usability improvement to me but it will break everyone's code. As a first step we could just do Resource.eval to keep the API the same.

Note that the Describe cache is per pool so we don't want to roll it into the Parse cache, which is per session. If we did this we would end up running Describe exchanges for statements we already know are valid.

tpolecat commented 3 years ago

I should add that this really means we need to redo the session pool, which is overly complicated at the moment.

fdietze commented 2 years ago

How about ditching the session pool of skunk entirely and refer to dedicated solutions like https://www.pgbouncer.org/ instead?