Roman Kofman

Results 12 comments of Roman Kofman

I would suggest a specific fix, but I haven't been able to find the information myself as of yet :)

~~We seem to be running into a similar issue. Recently had a production issue where a single process was able to saturate DB connections (direct to DB, no pgBouncer in...

Also wondering this. Applying migrations [is documented](https://v2.tauri.app/plugin/sql/#applying-migrations), but rolling them back does not seem to be.

To summarize: `createClient` in openapi-fetch has this line: ``` fetch: baseFetch = globalThis.fetch, ``` which caches the value of `fetch`. However: `msw` _overrides_ the value of `fetch` in `server.listen` (because...

Testing a full grid at release time _can_ be useful even if extra effort is not expended on increasing support. It provides a smidge more visibility and a chance to...

`serializeQueryArgs` [is documented](https://async-transformresponse--rtk-query-docs.netlify.app/api/createapi/#serializequeryargs) as: > Accepts a custom function if you have a need to change the creation of cache keys for any reason. To me, it is surprising that...

Since the serialization for `StableQueryArgs` _doesn't_ need to be reversible, would it be useful to just implement a mapping of `bigint` values to _some_ serialized form directly in `StableQueryArgs` (e.g....

Anything I can do to facilitate a code review / merging of my PR above?

I appreciate the pointer to the CodeSandbox preview. It's definitely a better workaround than I had landed on -- and something I totally overlooked as a possibility. Will follow-up on...