Conversation
Notices
-
Have I mentioned that I HATE the pleroma db lately?
-
@pwm Who doesn't?
-
@mint @pwm my thoughts exactly
-
@mint I guess I could manually create the index I need but sheesh
query goes from instantaneous to 20s just from adding an order by in order to paginate on the client side
-
@pwm Are you trying to optimize pleromer itself or making something separate that grabs data from its DB directly?
-
@mint I was pulling post text out of the db for a separate application, see dsmc logs.
Just yanking posts out is fast but not deterministic, which I need in order to paginate through query results in the client program, which I'm doing to not pull 64000 posts in one go.
I'm not sure if I shouldn't just suck it up, technically I already did what I wanted, it was just too slow for me to be satisfied.