Rinat Shigapov
Rinat Shigapov
Dummy string variant can be modeled as ``` "UnknownStringVariant": { "readOnly": true, "type": "string" } ``` Client should support this variant to maintain forward compatibility. Server should not allow this...
An interesting detail. I renamed "coroutines" into "semicoroutines". So coroutine based prime sieve is expected to reveal the overhead of coroutine scheduler, isn't it? Separate generator focused problem will be...
Also for couroutines it's interesting to compare single threaded and multi-threaded schedulers. Lua scheduler is single threaded. Tokio in Rust is multi-threaded by default but can be configured to use...
Indeed, didn't notice that
Calculating `rate` in Prometheus is possible for interval longer than scraping period. Is it possible to scrape [_details](https://raw.githack.com/rabbitmq/rabbitmq-management/rabbitmq_v3_6_5/priv/www/doc/stats.html) objects? For example `avg` total message count for last 30 seconds?
@abonander , I've done a quick research and haven't found any SQL client or ORM projects that do client-side transaction retries. --- I extended my research to any database interface...
I think that SQL libraries/ORM authors usually provide an API with the assumptions: - database configuration uses default transaction isolation level like read_committed or repeatable_read - user could add SELECT...
Some power users may not need transaction retries and concurrency safe operation on `serializable` isolation level. These users could call a "commit finalizer" that accepts retry strategy parameter and could...
@abonander , do you think that the proposed API layer could be a part of SQLx?