Jump to content

INSERT or UPDATE


johnsmith153

Recommended Posts

I am logging occasions someone's profile is viewed.

 

I will use a Cron to report the amount of views.

 

Do I?

 

(1) INSERT a record every time and count up at end. Remember, I'm using a Cron to report amount of views so won't be counting up on every page request!!

 

(2) UPDATE a table (but won't I need to SELECT previous value first)? Unless, "UPDATE field1 and add 1 to it's value" is possible.

 

Which is best?

Link to comment
https://forums.phpfreaks.com/topic/231111-insert-or-update/
Share on other sites

If I'm understanding the senerio properly, you should be able to use either. To update you basically would need to get the old count for the profile being viewed, update the count, and update the database.

 

But you might be better off tracking all the views with insert. In addition to just getting the count, you could gather more information that may be useful down the road. For example, you could collect the date and/or time a profile was viewed which could be used to tell you how many people viewed the profile in the last month.

Link to comment
https://forums.phpfreaks.com/topic/231111-insert-or-update/#findComment-1189613
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.