Levi Aul
Levi Aul
People who need deterministic primary keys tend to use binary-encoded UUIDs in a `bytea`-typed primary-key column. Frameworks such as Elixir's ORM Ecto [have first-class support for this approach](https://blog.fourk.io/uuids-as-primary-keys-in-phoenix-with-ecto-and-elixir-1dd79e1ecc2e), so you...
It seems strange to me that refresh and expire policies are calculated out-of-band of loading. I have a strong suspicion that the only real use-case for per-entry caching policies is...
How about adding support for content hosted on arbitrary blog sites, where the author has used `previous` and `next` links in each post to sequence individual blog posts into a...
I work on https://www.covalenthq.com/; we provide APIs to run heavy analytics queries regarding individual addresses, whole wallets/portfolios, or entire networks/chains. Right now a single chain is the "toplevel" of this...
(I would also like other helpful stuff for display, like `logo` metadata for projects and/or chain-native currencies, similar to the `logo` metadata in https://github.com/ethereum-lists/tokens. But that's a bigger ask, since...
Ah, darn, I personally had a definite use-case for this (a client making an RPC request that subscribes it to notifications over the connection until it disconnects, ala websockets; where...
Also, how about streaming _encoding_, when your top-level input term can be guaranteed to be `Enumerable`? Basically, an API function to do this (with perhaps lower overhead): ```elixir Stream.concat([ ["[\n"],...
And here's a `timestamp_from_partition_suffix` function for you (the weird control-structure sequencing here being done so that each regexp only needs to be evaluated once, rather than once to test and...
I've already worked through this a bit to create something that works "enough" for my own application. I won't PR these, as my solutions aren't likely to line up with...
It makes sense to me that functions that don't deal with the entire domain would not make for valid casts or send/receive functions. We've only been dealing with encodings of...