Question I'd like to hear everyone's thoughts on possibly making votes public. This has been discussed in a lot of other issues, but here's a dedicated one for discussion. Positives Could help figh...
Probably better to post in the github issue rather than replying here.
Because then people can vote an unlimited number of times.
There needs to be some sort of identifier
array votes[post_id, vote]; // for storing in user profile not public but can be hashed if you don’t trust your dba
Enumerating every user to get the vote count on every single post/comment seems too computationally expensive.
post has it’s own count, this was about a user’s vote history in their profile
Ah okay