{@thread.name}

HarryET
2023-01-28

HarryET:

Does AshPostgres cache queries?

ZachDaniel:

It uses ecto under the hood, so to the extent that ecto caches queries, ash postgres does. Have you noticed issues with that behavior?

HarryET:

Not really yet, I was just pre-loading and noticed it fired ~3 queries

frankdugan3:

I can fire several queries, but it is pretty well optimized for consistent performance, something like dataloader pattern. Wonโ€™t run into N+1 issues.

HarryET:

Cool, thanks ๐Ÿ™Œ๐Ÿผ