Q. Why are you storing the `AnswerCount` in the `Posts` table in the first place?
An alternative approach is to eliminate the "write back" to the `Posts` table by not storing the `AnswerCount` in the table but to dynamically calculate the number of answers to the post as required.
Yes, this will mean you're running an additional query:
SELECT COUNT(*) FROM Answers WHERE post_id = @id
or more typically (if you're displaying this for the home page):
SELECT post_id,
<post fields>,
AnswerCount
FROM Posts
INNER JOIN AnswersCount_view
ON <join criteria>
WHERE <home page criteria>
but this typically results in an `INDEX SCAN` and may be more efficient in the use of resources than using `READ ISOLATION`.
*There's more than one way to skin a cat. De-normalisation of a database schema can introduce scalability issues.*