We run a Drupal site, and are expecting a sudden burst of users some time soon.
What are some of the best Drupal practices to handle sudden burst of: - User registrations - User Authentication
These operations are heavily dependent on database... so, how do we optimize that? Are there any techniques that minimize DB interaction during User Authentication? (for example: storing objects in memory, and writing them to DB at a later point in time?)
Any tips are greatly appreciated.