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 p.post_id, 
         p.<additional post fields>,
         a.AnswerCount
    FROM Posts p
        INNER JOIN AnswersCount_view a
        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.  Premature de-normalisation of a database schema can introduce scalability issues.*