Live data from Hacker News

Viewing profile — zombodb

zombodb

HN member
Joined
Mon, Jul 20, 2015, 4:57 AM UTC
HN karma
126
Public activity
44 items

About zombodb

No profile information was provided.

Recent public activity

  1. comment
    Comment #44642158

    Shout out to grapeseed oil

  2. 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.

  3. 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.

  4. comment
    Comment #39781246

    If you build it, they'll come. The only limit is yourself!

  5. comment
    Comment #38419277

    Nice deck, Ryan! And thanks for the mentions. ;)

  6. 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…

  7. 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…

  8. comment
    Comment #37815062

    Thank you. I’ll pass this on to the team.

  9. comment
    Comment #36064768

    If you’re aware of bugs that fall within plrust’s domain we’d appreciate any and all reports via GitHub!

  10. comment
    Comment #33935820

    Always nice to see pgx being used in the wild! Awesome work.

  11. 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.

  12. comment
    Comment #27979184

    I can definitely reword that if it's confusing.

  13. 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…

  14. 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?

  15. comment
    Comment #23894769

    https://github.com/zombodb/pgx/releases/tag/v0.0.7 !boom!

  16. 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?

  17. 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…

  18. 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…

  19. comment
  20. 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…

  21. 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…

  22. 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…

  23. 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…

  24. 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(…

  25. 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.