Using lnx for dynamic data search/ranking #143
-
Hi there! I would like to use lnx for my next project since it looks very promising, however I'm not quite sure how well it would suit my goals. Basically, I want to rank user-made posts based on (a combination of):
The tags and content of posts should be quite static elements, however the upvotes and downvotes of the posts will be very dynamic. I'm afraid that at the moment, I would have to delete posts and re-index them every time (or every x times) a post is up/downvoted. Would lnx be a good solution for such a platform, or would you recommend something else instead? Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hello 👋 I think the biggest issue you would have is if you want to take all of those parameters into account for a single query, the current query API doesn't let you re-rank things based on the contents of a numeric field for example. If you are trying to do those separately though, then it should be fine.
I would not worry too much about this unless you are looking at hundreds of thousands of updates per second, lnx will generally quite happily handle at least a few thousand updates a second without issue on limited resources. |
Beta Was this translation helpful? Give feedback.
Hello 👋
I think the biggest issue you would have is if you want to take all of those parameters into account for a single query, the current query API doesn't let you re-rank things based on the contents of a numeric field for example.
If you are trying to do those separately though, then it should be fine.
I would not worry too much about this unless you are looking at hundreds of thousands of updates per second, lnx will gener…