Todd
Vanilla StaffTodd Vanilla Staff
Reactions
-
Re: Vanilla Performance Discussion
We've done a lot of scaling optimizations which took load off of io, but has raised the load on cpu. This is due to having more calculation in the app rather than the database. We will be improving t… (View Post)7 -
Re: Looking for experience with implementing cron functionality in Vanilla
There's other ways to do a lock in a db without significant transactions. Here is one suggestion. * Update a column to a random number where it is equal to 0. This is an atomic operation. * Select th… (View Post)1 -
Re: Looking for experience with implementing cron functionality in Vanilla
@businessdad, I think I'd prefer some sort of lock made using the database rather than the filesystem. (View Post)1 -
Re: How can I directly edit the MeBox? (2.1b)
You are correct with the location. And as with all views you can override it in your own theme without editing core files. Just copy the me.php to: /themes/yourtheme/views/modules/me.php (View Post)2 -
Re: Unknown Spammer
What I'd do is this: * You'll need to update your database directly in phpMyAdmin or something like that. * Go into GDN_Role and find the Guest row. * Set CanSession = 1. * Now go into Roles & Pe… (View Post)1