Eric Satterwhite

Results 209 comments of Eric Satterwhite

@fffonion are the `header_filter` or `body_filter` phases possible? The seem to be explicitly excluded from the allowable phases, but not apparent as to why

One thing to consider, is if the search nodes are interfacing with a metastore that cant not issue writes (a pg replica). Might make things complicated

It doesn't necessarily need to be in postgres / metastore. But it would be very beneficial if one is able to query it. It's a data set and use case...

```javascript var fluent = require('fluent-json-schema') var base = fluent .object() .prop('one', fluent.number()) .prop('two', fluent.number()) var extended = fluent.object() .prop('three', fluent.number()) .prop('four', fluent.number()) .extend(base) var alternate = extended.without(['one']) ``` ```txt var...

I've only just stumbled onto this project and rather excited by its goals. But, I am confused as to the target run time. Does this only run on bun?

Deno also has an FFI interface as well for what its worth.

> It currently only runs on bun exclusively. There are no plans to support other runtimes, though I am open to it. Can we make plans? 😃

Maybe support for deno first, node later when the playing field is a bit more level?