简体   繁体   中英

Most Efficient Way To Query Firebase Firestore For Posts

I am currently creating a sort of social media app and like any social media app, it is almost crucial to display some sort of information from friends.

I have tried various ways to display posts to users that their friends have posted but it can be slow and I doubt it is the most efficient way.

At first I had structured my database as following:

users -> (uid) -> friends(array of uid's) posts(array of post id's) other info...

posts -> (post id) -> image_url other info...

With this setup I: 1. I took the current logged in users uid and got the document that belongs to that user under "users".

  1. I then got that users friends list as an array and looped through them.

  2. For each uid I then queried the "users" once more and found the document that belongs to that user.

  3. I then took the first "post id" in their "posts" array if there was one

  4. I took the post id and found the corresponding post in the "posts" collection and downloaded it.

  5. Repeat step 3 - 5 for every user id until there are no more posts, or i have downloaded 10 of them.

That was my first approach, however there are several problems with this that I can identify and most likely several more that I havent thought of yet.

  1. In steps 2 and 4. In these two steps I am downloading a whole array due to the fact that firestore will not allow you to download a certain index in an array. This slows down the process, image if there where

  2. Lets say the user scrolls down to refresh new posts then it would be difficult to load more posts because even if i start downloading where i left of, another post could be added in that time which throws the whole system of.

I am also experimenting with just having a collection call posts with post documents in them attatched to each user.

Any other ideas?

If I'm understanding your problem correctly, you are trying to facilitate a joins between a user and posts (ie you want all posts that user can see ordered by time or relevance). I would suggest creating a Firebase Function that writes a record under a users 'feed' collection when one of their friends creates a post. The record will contain a Reference to the post and the necessary info to rank/order the post. Then you can just make two queries (the first being relatively fast and pageable) to facilitate a feed for the user. If a user acquires a new friend, then just have another Firebase Function to pull in somewhat recent (probably not from the beginning of time) posts from that friend.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM