Live data from Hacker News

Viewing profile — baur

baur

HN member
Joined
Thu, Oct 07, 2021, 7:31 AM UTC
HN karma
6
Public activity
8 items

About baur

works at crate.io

Recent public activity

  1. comment
    Comment #39867441

    CrateDB might be a good fit for full text and vector search (it’s SQL database but has dedicated clauses for FT and VS). Curious how do you use PG for key/value and queue - do you …

  2. comment
    Comment #36706579

    Yep, CrateDB is not ACID but has eventual consistency at the row level. I think for some use cases it's fine that some inserts are not visible in search results immediately. Also, …

  3. comment
  4. comment
  5. comment
    Comment #29189701

    Congrats on the launch! Just wondering, do you have any plans to support CrateDB? It supports SQL and understands PG protocol - perhaps supporting Postgres kinda already makes it c…

  6. comment
    Comment #29107155

    That's a nice idea. I guess it's better to stay in primitive type range (to avoid long arithmetics), so we can "compress" up to 15 items into a single prime_product making it less …

  7. comment
    Comment #29106567

    Trie also can be used as a hashset/map, roughly it's like hash(obj).toString is a "word" for a trie and in the leaf we store the object. It's https://en.wikipedia.org/wiki/Hash_arr…

  8. comment
    Comment #29106510

    Nice implementation! There is an option to get all suffixes without traversing subtree, but it comes with extra O(N) memory where N is combined length of all stored words - dependi…