PDA

View Full Version : Optimization for "Last Post in Profile"


Andreas
09-26-2005, 10:00 PM
Optimization for "Last Post in Profile"

Description
vBulletin has a feature to display information about the last post made by a user in his profile.
However, this can be very server intensive:


Show Last Post on Profile Page
Showing the last post on a member profile can cause large table scans which leads to table locking.
This may increase load time on your forums as well as the load of your server.
This option should only be enabled for smaller forums.

These table scans are necessary because vBulletin does not know if the last post is accessible (eg. not soft-deleted, not in moderation and not in a forum where the viewing user does not have access rights).
But: How often does it happen that the last post is NOT accessible?

If your answer is seldom, then this Hack is for you:
It directly fetches the last post info in this case, without the need for any table scans.

Drawback: If the last post is NOT accessible, then it causes one additional, pretty light query and some PHP processing in member.php.

More background Info: http://www.vbulletin.com/forum/bugs35.php?do=view&bugid=1405

ATTENTION: Due to Multi-Table UPDATEs being used in the installation code of this product, you will need at least mySQL 4.0.4 in order to install this properly.
If you install it with an older Version, it will still work - however it will always cause the additional query then for all users until they have made a new post.

History
1.0.0
Initial Version

1.0.1
Minor Bugfix (http://www.vbulletin.com/forum/bugs35.php?do=view&bugid=1408)

The Realist
09-27-2005, 04:26 PM
1st to install I see. Will post back in time with comments.

JJR512
09-28-2005, 01:18 AM
The drawback seems less severe than using the built-in system all the time, based on your explanations. Is that correct?

Andreas
09-28-2005, 08:01 AM
Yes. As pointed out, in most cases the first query (which I added) should catch the necessary data.
Only if it does not it will make a fallback to the default code.

JJR512
09-28-2005, 01:21 PM
Well, I just found out my webhost only has MySQL 4.0.25. So I'll have to wait...

Andreas
09-28-2005, 01:26 PM
Erm ... MySQL 4.0.25 is newer than MySQL 4.0.4.
All MySQL Versions > 4.0.4 should work just fine :)

JJR512
09-28-2005, 01:30 PM
d'Oh!

Yeah, 25 is greater than 4. :D I apparently had mentally ignored the 5 and just saw the 2, and said that's less than 4... :o

JJR512
09-28-2005, 01:41 PM
OK, just one question: After importing the product, should the "Show Last Post on Profile Page" option in the "User Listing & Profile Viewing" section of the options be on or off? I just wasn't certain if turning it on meant it was using the built-in system or if your hack replaces the built-in system with your own.

Andreas
09-28-2005, 01:47 PM
On. If it is off, then it is completely off.
This Hack replaces/extends the built-in system.

ThorstenA
11-08-2005, 10:44 AM
A handful users complain that if they create a new post while receiving a private message, they'll get a fatal error


Fatal error: Call to a member function on a non-object in .../includes/class_dm_user.php(1427) : eval()'d code on line 3

Andreas
11-08-2005, 11:02 AM
Hmm ... could be.

Change the condition in Hook userdata_presave from


if (THIS_SCRIPT == 'newreply' OR THIS_SCRIPT == 'newthread')


to


if ((THIS_SCRIPT == 'newreply' OR THIS_SCRIPT == 'newthread') AND is_object($this->registry->dmref))

ThorstenA
11-08-2005, 03:34 PM
the same error occurs ... I have disabled the plugin. Thanks for your very quick help anyway!

Andreas
11-08-2005, 04:50 PM
Hmm .. strange :)
The condition explicitly checks if it is an object.

Do you have other Plugins on the same Hook?

I tried to reproduce this:

- Clicked reply in a Thread
- Took another browser, sent myself a new PM
- Submitted the newreply form

No problems.

Can you tell me exactly how to reproduce the error?