I need to implement a way to increase view count for my posts when the post is viewed on the client side. For now, I won't be handling removing duplicate views by refreshing.
If PATCH or PUT is sent to the server with the viewcount + 1 on client side, viewcount will be overridden if multiple users use my service.
Is creating a new endpoint only for increasing the view count the best practice? If so, what would be the correct URI staying RESTful? (POST /post/count ?)