Conrad Ludgate

Results 133 issues of Conrad Ludgate

Add proxy flag introduced in https://github.com/neondatabase/neon/pull/5417

Fixes #182 I developed the crate `futures-buffered` a couple years ago with the intent of being a more efficient 'FuturesUnordered' type than the one in `futures_util`. The core of the...

**Is your feature request related to a problem? Please describe.** The `AsyncWriteExt` trait provides the `write_all_buf` function to write the entire contents of a `Buf` type to the underlying writer....

A-tokio
M-io
C-feature-request

## Problem If there's a quota error, it makes sense to cache it for a short window of time. Many clients do not handle database connection errors gracefully, so just...

## Problem NodeInfo is 256 bytes. Old EndpointCacheKey is more expensive to hash and compare given it's string based. ## Summary of changes NodeCachedInfo is 48 bytes. New EndpointCacheKey is...

## Problem new warnings on nightly. ## Summary of changes broken up each commit by warning type. 1. Remove some unnecessary refs. 2. In edition 2024, inference will default to...

## Problem `cargo +nightly check` fails ## Summary of changes Updates `measured`, `time`, and `crc32c`. * `measured`: updated to fix https://github.com/rust-lang/rust/issues/125763. * `time`: updated to fix https://github.com/rust-lang/rust/issues/125319 * `crc32c`: updated...

To distinguish between errors * `user` - a user made a mistake * `ratelimit` - a user issued too many requests * `quota` - a user used more than they...

I wanted to have a linked list of `Arc` for a toy async runtime I am working on. It took a bit of effort but I did eventually manage to...