Created a PR to update some of the vectordb links and also fixed the markdown: https://github.com/Olshansk/postgres_for_everything/pull/1
How to use Postgres for everything
31–40 of 181 posts
Re: How to use Postgres for everything
#32Easily the most stable part of the stack (100% uptime on RDS since 2021/02/01).
Re: How to use Postgres for everything
#33I'm wondering, any approach for bitemporal dbs, like xtdb?
Re: How to use Postgres for everything
#34For example instead of integrating with a message queue I can just do an INSERT this is great. It lowers the friction.
Vector search is a no brainer too. Why would I have 2 databases when 1 can do it all.
Using Postgres to generate HTML is questionable though. I haven't tried it but I can't image its a viable way to create user interfaces.
Re: How to use Postgres for everything
#35Is there a local-first postgres solution?
Re: How to use Postgres for everything
#36Great repo! Thanks! I'm wondering, any approach for bitemporal dbs, like xtdb?
Re: How to use Postgres for everything
#37Re: How to use Postgres for everything
#38Earlier quoted context omitted.
I always wonder if postgrest works well after growing quite a bit. I really should google the largest companies using it.
In my experience, without careful tunning, postgres performance starts dropping significantly around 10 million rows.
In my experience performance is often directly related to the ratio (total RAM available to Postgresql, shared buffer and buffercache included / total size of tables and indices ), save any weird usage pattern.
Re: How to use Postgres for everything
#39https://github.com/jankovicsandras/plpgsql_bm25
Opensource BM25 search in PL/pgSQL (for example where you can't use Rust extensions), and hybrid search with pgvector and Reciprocal Rank Fusion.
Re: How to use Postgres for everything
#40I can see a lot of benefits of having 1 API to access a lot of functionality. For example instead of integrating with a message queue I can just do an INSERT this is great. It lowers the friction. Vector search is a no brainer too. Why would I have 2 databases when 1 can do it all. Using Postgres to generate HTML is questionable though. I haven't tried it but I can't image its a viable way to create user interfaces.
Check https://apex.oracle.com/ which does that.