Firebase RTDB full text search with Typesense

Viewed 28

does Typesense support firebase RTDB? I know it works with firestore. Thanks

1 Answers

Typesense is a totally independent service. All you need to do is add data in it irrespective if which database it is coming from.

You can use Firebase Realtime Database Triggers for Cloud Functions to run a function whenever data is added to RTDB and then update it in Typesense. It just the pre-made extension that works with Firestore but you can always write yours as mentioned.

Related