+ Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: MySQL Speed test..... I need ur help !!

  1. #1
    careerbridge's Avatar
    careerbridge is offline x10 Sophmore careerbridge is an unknown quantity at this point
    Join Date
    Jun 2006
    Location
    India
    Posts
    126

    Wink MySQL Speed test..... I need ur help !!

    Hi guys,

    Look, I am very very seroius in this matter ;)

    I am developing a my-own database management system which is fully coded in php. I am almost completed and now I need a speed test comparison with other databases ( preferably MySQL )

    I have created a test database with a field length of 100 bytes (single field) and have 30,000 records. My test results shows 0.509052038193 sec for searching through the entire 30,000 records.

    I don't even know this is a good speed or not So I need openions from experts. You can find a its test page on x10 server here... http://careerbridge.edu.ms/mcdb/speed.php If anyone here can do a similer test in mySQL, that would be good !!

    Looking forward to ur comments, suggestions and critics,
    CRB

  2. #2
    careerbridge's Avatar
    careerbridge is offline x10 Sophmore careerbridge is an unknown quantity at this point
    Join Date
    Jun 2006
    Location
    India
    Posts
    126

  3. #3
    chris218 is offline x10Hosting Member chris218 is an unknown quantity at this point
    Join Date
    Jul 2006
    Location
    London, UK
    Posts
    65

    Re: MySQL Speed test..... I need ur help !!

    MySQL is by far the quickest, but it could be slower from host to host. Performance wise, MySQL is best.

    A hist running say MSSQL on a top of the range server, would probably be quicker than MySQL on not such a good server, it is hard to say. But performance wise, definately MySQL using MyIsam

  4. #4
    Chris Z's Avatar
    Chris Z is offline x10 Spammer Chris Z is an unknown quantity at this point
    Join Date
    Sep 2005
    Location
    Alabama, USA
    Posts
    2,802

    Re: MySQL Speed test..... I need ur help !!

    i just tested yours and it came out to be "Search took 0.269733905792 seconds" so it's slightly faster than the one you posted but idk how to do this on mysql, sorry ;) but it's awesome that you're making a whole new database system
    -Chris Z
    Retired Account Manager


  5. #5
    careerbridge's Avatar
    careerbridge is offline x10 Sophmore careerbridge is an unknown quantity at this point
    Join Date
    Jun 2006
    Location
    India
    Posts
    126

    Re: MySQL Speed test..... I need ur help !!

    billybob bo buck....well, 0.269733905792 seconds is twise faster !!! Thanks a lot for the info

    anyone else... please help !! ;) I realy need feedbacks on this !!
    Last edited by careerbridge; 07-19-2006 at 01:12 AM.

  6. #6
    Torch's Avatar
    Torch is offline x10 Lieutenant Torch is an unknown quantity at this point
    Join Date
    Apr 2006
    Location
    Belgrade, Serbia
    Posts
    317

    Re: MySQL Speed test..... I need ur help !!

    Last 2 test I done through your file took about 2,4 seconds, even though previous two I tried were ~0,5 secs. So, that clearly shows that search speed is heavly dependant on current server load and it's speed.
    I browsed your mcdb directory and I see that you have file db.txt. If that the database you stated your speedtest is searching, than you can't really make a good comparison since txt files are slower read than eg. MySql data files.
    If not, which database type are you searching (since you ask for comparison to MySql)?

  7. #7
    careerbridge's Avatar
    careerbridge is offline x10 Sophmore careerbridge is an unknown quantity at this point
    Join Date
    Jun 2006
    Location
    India
    Posts
    126

    Re: MySQL Speed test..... I need ur help !!

    Let me ask this !!! What is a datafile ?? I guess every particular OS have a file system and all the file created in it have the same speed of read/write.

    Let's take this defenition from http://lib.stat.cmu.edu/DASL/Reference/defdatafile.html

    What is a datafile?
    A datafile is a collection of data, often called a "dataset." In general, each datafile will follow a particular format. This is to help with uniformity throughout the library. The format is provided below:

    Data format:

    * Datafile Name: (datafile name)
    * Datafile Subject: (e.g., Environment, Medical, Sports)
    * Story Name(s): (corresponding story name(s))
    * Reference: (data source)
    * Authorization: (describe copyright restrictions to the data, if any)
    * Description: (a description of the data: length, purpose of study)
    * Variable Names: (a list of the variable names and interpretations)
    * Data: (data as space- or tab-delimited text)
    Thus database is a well colleted source of informations in which the location of each byte is predefined !! Even if it is a text file or a .mdb file, OS handles it the same way.

    why mySQl is fast,
    Their unique separation of the core server from the storage engine makes it possible to run with very strict control, or with ultra fast disk access, whichever is more appropriate for the situation.
    My code not deals with a separation of the core server from the storage engine and it does not require a installation. All u need to include a 10kb driver file in to ur php file. When I almost completed I feel that my code runs very fast and I need a comparison with present databases.

    Well, the class file that i created can read/write in any file type and If u still think one file type is faster, tell me. The class could write on any files !!

    CRB

  8. #8
    Dub_Dude is offline x10 Sophmore Dub_Dude is an unknown quantity at this point
    Join Date
    Sep 2005
    Posts
    172

    Re: MySQL Speed test..... I need ur help !!

    for me the speed mainly lurks around 0.3 to 0.6

  9. #9
    randomize's Avatar
    randomize is offline x10 Lieutenant randomize is an unknown quantity at this point
    Join Date
    Mar 2006
    Posts
    337

    Re: MySQL Speed test..... I need ur help !!

    First Time:
    Search took 0.33873796463 seconds

    Second Time:

    Search took 0.554307937622 seconds

    Third Time:
    Search took 0.305633068085 seconds

    Fourth Time:
    Search took 0.266182184219 seconds

    Fifth Time:
    Search took 0.361886978149 seconds

    Those five times were done, just by me deep refreshing the page. It depends on the server speed etc.

    Regards,
    Randomize
    Last edited by randomize; 07-20-2006 at 09:49 AM.


    Click the animation above to go to the site where they are created!

    \ /
    (.) (.)
    /_
    \_____/
    The Evil Guy will take over all Signatures. Please help him to do this by copying and pasting him into your Signature.
    Thank you For Helping Evil!

  10. #10
    Torch's Avatar
    Torch is offline x10 Lieutenant Torch is an unknown quantity at this point
    Join Date
    Apr 2006
    Location
    Belgrade, Serbia
    Posts
    317

    Re: MySQL Speed test..... I need ur help !!

    Quote Originally Posted by careerbridge
    Let me ask this !!! What is a datafile ?? I guess every particular OS have a file system and all the file created in it have the same speed of read/write.

    Let's take this defenition from http://lib.stat.cmu.edu/DASL/Reference/defdatafile.html



    Thus database is a well colleted source of informations in which the location of each byte is predefined !! Even if it is a text file or a .mdb file, OS handles it the same way.

    why mySQl is fast,


    My code not deals with a separation of the core server from the storage engine and it does not require a installation. All u need to include a 10kb driver file in to ur php file. When I almost completed I feel that my code runs very fast and I need a comparison with present databases.

    Well, the class file that i created can read/write in any file type and If u still think one file type is faster, tell me. The class could write on any files !!

    CRB
    Is that directed toward me?
    If yes, no offense but please don't try to teach me anything (reminder)
    And I wasn't criticizing you (even though you asked fot that too: "Looking forward to ur comments, suggestions and critics,"), just giving a few pointers like you asked in the first post. There's no need to get all defensive.

+ Reply to Thread
Page 1 of 2 12 LastLast

Similar Threads

  1. [PHP] MySQL and PHP
    By Bryon in forum Tutorials
    Replies: 43
    Last Post: 03-24-2011, 08:27 AM
  2. MySQL server address HELP :S
    By rinnerz.com in forum Free Hosting
    Replies: 5
    Last Post: 07-09-2006, 11:25 AM
  3. in here MySQL version????
    By winUSD in forum Free Hosting
    Replies: 4
    Last Post: 05-09-2006, 09:44 AM
  4. Have a problem with my forum
    By tikloos in forum Scripts & 3rd Party Apps
    Replies: 43
    Last Post: 01-19-2006, 02:14 AM
  5. MySQL problem
    By pensoftware in forum Free Hosting
    Replies: 3
    Last Post: 10-30-2005, 01:34 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
x10hosting free hosting for the masses
dedicated servers