+ Reply to Thread + Post New Thread
Results 1 to 5 of 5

Thread: Can MySQL handle very high traffic?

  1. #1
    Senior SEO Specialist Zihad's Avatar
    Join Date
    Apr 2011
    Posts
    1,251
    Thanks
    12
    Thanked 24 Times in 22 Posts

    Default Can MySQL handle very high traffic?

    Can MySQL handle very high traffic? I'm talking about at least 1000 connections to a database per minute.

    I heard there are some drawbacks with MySQL, and this might be one of them. I love MySQL, but if its not good for enterprise level work, then I have to use another databasing method.
    Join ACP and get Payment Weekly!

  2. Shorten URL    SEO Services    Buy Xrumer

    Sponsored Links

  3. #2
    Senior SEO Specialist
    Join Date
    Apr 2011
    Location
    Bangladesh
    Posts
    699
    Thanks
    6
    Thanked 6 Times in 6 Posts

    Default

    i am using MySQL and i get around 2k visitors. i have never faced any kind of problem ever.
    thanks
    ACP has Years of experience and pays me Weekly!

  4. #3
    Registered Member ekgrin's Avatar
    Join Date
    Dec 2010
    Posts
    45
    Thanks
    9
    Thanked 10 Times in 4 Posts

    Default

    It depends upon the type of queries, server hardware and available RAM, and mysql optimization.

    I use mysql on dedicated servers with over 2k concurrent connections. The server specs need to be pretty good to handle that kind of connections.

  5. #4
    Senior SEO Specialist nicole's Avatar
    Join Date
    Apr 2011
    Location
    Bangladesh
    Posts
    900
    Thanks
    44
    Thanked 9 Times in 9 Posts

    Default

    Quote Originally Posted by Zihad View Post
    Can MySQL handle very high traffic? I'm talking about at least 1000 connections to a database per minute.

    I heard there are some drawbacks with MySQL, and this might be one of them. I love MySQL, but if its not good for enterprise level work, then I have to use another databasing method.
    Well, for big Enterprise level work like Google, MySQL is not appropriate. Oracle is best in that case.
    Get significantly high payout!
    Join ACP

  6. #5
    Registered Member
    Join Date
    Feb 2011
    Posts
    32
    Thanks
    3
    Thanked 6 Times in 2 Posts

    Default

    mysql is very powerful and with proper setup can handle a great deal of traffic.

    remember a few things.
    Its best to make a table long then it is wide.

    Example you have a database named DB1

    in DB1 you have 2 tables
    1st is users
    2nd is ip_tracking

    in users you have
    id, user, pass, email

    in ip_tracking you have
    id, userid, ip

    stead of 1 table having
    id, user, pass, email, ip

    stead of making a table with multiple sections
    id, user, pass, email, ip, status, medal1, medal2, medal3, medal4, medal5, medal6

    You see how much wider that is and all data takes longer to load as there is more and more information.
    Break it up into separate tables, and make the list not as wide and associate the data by key id number or associating each table somehow.


    Next make sure you have proper indexs setup for each table. Key items that will be used for identifying how you will pull information.

    TJ

+ Reply to Thread

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts