Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6092157
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T12:24:37+00:00 2026-05-23T12:24:37+00:00

I have a website that is fairly database intensive, so I’m trying to cut

  • 0

I have a website that is fairly database intensive, so I’m trying to cut back on database usage where possible. One place I want to do that is on each thread of my forum.

Instead of dynamically generating each thread each time it is viewed, I was thinking about generating a static version of each thread which would be overwritten any time a new post was made. Each thread would be stored in a /html/forum folder, and threads that hadn’t been edited in 3 or more days would be moved to a /html/forum/archive folder (so file_exists doesn’t have to search through 5,000 html files each time for the commonly viewed threads).

Here is a rough example of how the new thread page would look:

require_once('header.php');
if(file_exists('/html/forum/'.$thread_id.'.html'))
{
    require_once('/html/forum/'.$thread_id.'.html');
}
elseif(file_exists('/html/forum/archive/'.$thread_id.'.html'))
{
    require_once('/html/forum/archive/'.$thread_id.'.html');
}
else
{
    //display something about how the thread doesn't exist
}
require_once('footer.php');

The forum is just one example, but I was thinking about doing this with the majority of pages on my site. Are there any major drawbacks or advantages of this method over dynamically generating the content each time?

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T12:24:38+00:00Added an answer on May 23, 2026 at 12:24 pm

    Using static files like this isn’t a bad idea at all, but don’t bother with the archive subdir. Instead, split the cached files into subdirs by some abstract value, like the last digit of the thread id or the first two characters of the md5() hash of the thread id. So you get:

    /1/121.html
    /1/301.html
    /2/92.html
    /3/13.html
    

    This will keep your files-per-subdir down. You may want to go more levels depending on how may files you expect to have:

    /2/1/121.html
    /0/1/301.html
    /9/2/92.html
    /1/3/13.html
    

    Alternatively, you might want to put this static content into something like a Memcache — then you won’t have to worry about filenames at all, just index by the thread id. You could even put the content into your SQL database — at least in this case, you’re doing just one single-row query instead of a large join.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a website that was originally developed using a SQL Express database in
I want to have a very simple editor for my website that i wrote
I have a website that plays mp3s in a flash player. If a user
I have a website that I've just uploaded onto the Internet. When I browse
We have a website that uses #include file command to roll info into some
I have a website that is perfectely centered aligned. The CSS code works fine.
I have a Website that is really slow and feels really bad when using
I have a website that is deployed between 3 different environments - Dev, Stage,
I have a website that works correctly under IIS 6.0: It authenticates users with
I have a website that employs a generic mod_rewrite rule to push all requests

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.