Hey guys, I'm working on a recommendation engine f...
# orm-help
p
Hey guys, I'm working on a recommendation engine for my company and the most reliable/robust way I found to track actions (page views, likes, shares, etc for each article) was to create a new row for a custom model. (ContentAction) My question: Is this an appropriate way of doing this? We'd just like to query/sort content based on amount of engagement between a time period. Given that Prisma does not support atomic mutations, this was the best I could think of. We get about 2 million page views per month, so I expect to create 24 million+ rows per year. Somehow, that feels wrong.