in reply to Re: Perl/CGI + MySQL: How many calls is too many?
in thread Perl/CGI + MySQL: How many calls is too many?

Those benchmarks look pretty dodgy to me. Whenever I see these graphs where two products follow the EXACT same line on a graph (in this case MySQL and Oracle), then I get suspicious - it basically means that the database is running at the fundamental limits of "something", be it the OS or the driver or the technology being used. That's not necessarily a bad thing, but it tells you nothing about which is faster - MySQL or Oracle. For that you need the database itself be the limiting factor, and it's obviously not in this test.
  • Comment on Re: Re: Perl/CGI + MySQL: How many calls is too many?

Replies are listed 'Best First'.
Re: Re: Re: Perl/CGI + MySQL: How many calls is too many?
by mpeppler (Vicar) on Feb 27, 2002 at 22:18 UTC
    Another issue for that particular test is that it seems that the JDBC drivers used played a big role. So while the app worked well for Oracle and MySQL it wasn't well suited for Sybase (Sybase isn't very good at handling cursors, because in general you don't need them...)

    Michael