how can i best mimic twitter kind of feed with trpc
talking about randomising post based on interest saw Elon Musk talking about AI mixing any ideas?
7 Replies
There is a lot that goes into the twitter feed you see. The hard part is setting up the data and trpc isn't really involved in that
So this is the wrong way to ask about it
If you want the most active posts, you'd need to be able to calculate activity around a post and then be able to fetch it using trpc and finally render it on the user's screen
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
So heres maybe how twitter does it (I'm not sure how accurate it is) but it does a good job showing the moving pieces responsible when you are working with scale
They have several services that build out a time line for the user which includes followed user posts,ads and idk what else. I DONT USE TWITTER
You can have a service responsible for it sure but its probably safer to start with a monolith server and just do everything on there first.
this is the new proposed way
in which twitter plans to rebuild on in other to save cost
Yeah I understand
The point is this is a entire system you need to design and develop. TRPC is just a slice of it