Realtime search capability #254
Replies: 1 comment 3 replies
-
|
Hey @sali0 - thanks for this, it's fascinating. I'd love it if they had the code available, but from what I can glean from the article:
This is quite cool. We could actually swap Also, This article gave me a could of ideas though. I couldn't find the code - do you know if they published it? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello all,
Big fan of Supabase and its philosophy! I wanted to throw an idea out there that might be of use.
Most full-text search implemented across various web apps is currently done with Elasticsearch. However, for many simple to moderately-complex use cases this is overkill, and another dependency to learn and maintain for developers. Many don't know that Postgres has powerful full-text search capability on its own with tsvector and other features like trigram indexes. What really got me interested in using Postgres for search was this great article:
https://devrain.io/ecto/phoenix/elixir/postgresql/2020/05/14/postgres-and-phoenix-search-without-triggers.html
Here is a relevant quote about the motivation:
I know that Realtime is built on top of Phoenix and Elixir, and thought that maybe the same stack could be used for creating a service for realtime full-text search as an additional feature for Supabase. Please let me know what you all think, and if this might be a good feature to add. I am fairly new to Elixir and am learning Postgres, but would love to contribute to something like this. Thanks!
Beta Was this translation helpful? Give feedback.
All reactions