Any reason it would miss counts?
-
Had a situation earlier today where the view count stopped completely for about a half and hour.
Once we hit edit, and then closed out without updating, it began counting again.
We know this was getting views as the outbound link clicks for Facebook and Twitter posts (with the link being this post) were climbing in real time during that period.
Not using a cache, only opcache at server level for php generation.
We are using NGINX, but not caching full HTML pages. Just for static files like images.
WP_CACHE is not set in config file.
We are displaying the views via a manual call to the postmeta views column within the loop for each story.
genesis_get_custom_field(‘views’) – which is just a fancy version of get_post_meta($post_id, $key, $single);
So, is there any situation where page views could stop/hang, without any other kind of site error happening?
Could the constant requests for data from the postmeta table for display purposes cause the miss of recording a view?
The topic ‘Any reason it would miss counts?’ is closed to new replies.