0

Im having online online auction website running live since near about 3 years and still going good. Within 3 years so many auctions has been listed on server and completed too. but now there are a lot of load on server as there are so many completed and live auction on database server. Therefore performance of website is not what it was earlier. What should I do to improve the performance ? All table are created using storage engine "MyISAM".

5
  • 1
    This depends on a large number of factors. How about archiving a big chunk of the completed auction data so your live DB is smaller? Commented Jan 30, 2013 at 5:56
  • Thanks for quick response. But I didn't fully understand what you exactly mean by archiving and how to do it? I never come through such situation. Can you please explain in details how to perform archiving ? Can such data will be accessible with same php code later on or I will have to make some changes ? Commented Jan 30, 2013 at 6:03
  • 1
    Say your table is called Auctions. You can create a table called AuctionsBackup. DELETE all rows from Auctions that are complete and/or before some date (say 6 months ago) and put them in AuctionsBackup just so you don't lose them. You can do this with php of course Commented Jan 30, 2013 at 6:05
  • 1
    Probably more likely an index issues than anything else.. Commented Jan 30, 2013 at 6:13
  • 1
    Or you can convert your engine to InnoDB and backup your data to MyISAM. Commented Jan 30, 2013 at 6:23

1 Answer 1

1

Read this frist

  • Basic & the frist thing you can do is index the tables.
  • You will have to switch MyISAM to InnoDB. Read More
  • You can Backup the existing data and start from the beginning if possible

Read More

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.