Comment by ekianjo

Comment by ekianjo 5 days ago

3 replies

The solution was always: provide several algos on top of chronological order, and let people choose.

Client side Algo cannot be implemented because the API does not give you enough controls (I know, I have written Mastodon clients)

mkl 4 days ago

If you can get the messages, you can run a client-side algorithm - just download everything in the last 24 hours or whatever, and algorithmically choose what to display in what order.

  • ekianjo 4 days ago

    That's a huge waste of resources on the client side. If every client does that it will bring the servers to their knees.

  • nyclounge 4 days ago

    While I agree with you, technically everything can be done with API, but what are the bottle neck of just have everything accessing a db table directly? Cutting out the http API middle man?