Viewing profile — zombodb
zombodb
HN member- Joined
- Mon, Jul 20, 2015, 4:57 AM UTC
- HN karma
- 126
- Public activity
- 44 items
- HN profile
- View on Hacker News ↗
About zombodb
No profile information was provided.
Recent public activity
-
comment
Comment #44642158
Shout out to grapeseed oil
-
comment
Comment #39971946
Yup. Just under a 501c3 to help ensure pgrx outlives us. Huge thanks to TCDI (www.tcdi.com) for continuing to fund development.
-
comment
Comment #39781421
Y'all have built something cool. I'm excited to see where it goes from here. If there's anything the pgrx team can do to help, just let us know.
-
comment
Comment #39781246
If you build it, they'll come. The only limit is yourself!
-
comment
Comment #38419277
Nice deck, Ryan! And thanks for the mentions. ;)
-
comment
Comment #37839522
I think maybe what you’re really looking for are the files here: https://github.com/pgcentralfoundation/pgrx/tree/c2eac033856... Those are the internals we currently expose as unsa…
-
comment
Comment #37839101
I don’t think we even expose the TableAM APIs? They are incredibly hard to generate bindings for from the C headers — lots of inline functions and complex #define macros. We have a…
-
comment
Comment #37815062
Thank you. I’ll pass this on to the team.
-
comment
Comment #36064768
If you’re aware of bugs that fall within plrust’s domain we’d appreciate any and all reports via GitHub!
-
comment
Comment #33935820
Always nice to see pgx being used in the wild! Awesome work.
-
comment
Comment #27979354
I don’t pay any attention to what the cloud providers are doing. I have no control over them so….. eh. ZDB is still alive and well but I have a real job now too.
-
comment
Comment #27979184
I can definitely reword that if it's confusing.
-
comment
Comment #27978334
> Doing so would require ElasticSearch to reach consensus on every read/write ZomboDB only requires that ES have a view of its index that's consistent with the active Postgres tran…
-
comment
Comment #27976705
I wonder what the ZomboDB developers are up to now? What great text-search-in-postgres things could they be secretly working on?
-
comment
Comment #23894769
https://github.com/zombodb/pgx/releases/tag/v0.0.7 !boom!
-
comment
Comment #23827602
I'd be inclined to agree. That said, it'd be easy to prototype with pgx, assuming that compression library exists in the Rust ecosystem too?
-
comment
Comment #23827581
I've noodled the idea of a pl/pg_rust, but the whole "Cargo.toml" and downloading dependencies from the internet seems bad. I see what you're saying about no_std tho. Could be doab…
-
comment
Comment #23826027
That is interesting. pgx does a lot of that too, but for only pg10/11/12. And then it post-processes the bindings and builds a "common.rs" for symbols that are identical across ver…
-
comment
Comment #23825701
blush
-
comment
Comment #23825648
Sure! Top is Postgres, bottom is pgx, after running each 5 times... test=# SELECT count(*) FROM (SELECT generate_series(1, 10000000)) s; count ---------- 10000000 (1 row) Time: 399…
-
comment
Comment #23825169
Yes there is. It's not documented/example'd yet tho. There's a derive macro called #[derive(PostgresType)]. Combine that with serde's Serialize, Deserialize, and you're gtg. I'm go…
-
comment
Comment #23823396
Fair. With pgx, however, Rust "panic!"s are translated into standard Postgres "ERROR"s, such that instead of crashing, only the current transaction aborts. So while you're pretty m…
-
comment
Comment #23823333
That's a great question, and one probably best answered over on pgx's GitHub page. But! I plan on adding a command to "cargo-pgx" to package up the extension for you into a directo…
-
comment
Comment #23823104
One more follow-up... The top one is pgx, the bottom is Postgres. So there's a little room for improvement here with pgx, but that's okay for a v0.0.3 release. test=# select count(…
-
comment
Comment #23822824
Thank you! If you decide to jump into it, definitely let us know any pain points you have. It takes a bit of time to work out the kinks in a thing like this.