om: "fredt" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: 05 September 2002 11:41
Subject: Re: [Hsqldb-developers] HSQLDB 1.7.0 - Performance audit
Hi Loic,
Thanks for the effort. I hope you continue contributing to the project.
>-1-
>int siz
ject: Re: [Hsqldb-developers] HSQLDB 1.7.0 - Performance audit
> Hi Loic,
>
> Thanks for the effort. I hope you continue contributing to the project.
>
> >-1-
> >int size = Vector.size();
> >for( int i = 0; i < size; i++ )
> >{}
> >
> is better than
>
Hi Loic,
Thanks for the effort. I hope you continue contributing to the project.
>-1-
>int size = Vector.size();
>for( int i = 0; i < size; i++ )
>{}
>
is better than
>
>for( int i = 0; i < Vector.size(); i++ )
>{}
We have used the first form in all places that are performance sensitive.
The se
Hello,
Concerned by the performances of HSQLDB, I've made an audit (using Together
6.0).
(see attachment)
I've take a look on the source code of hsqldb and find some easy
improvments which can
speed up hsqldb. In fact, this is some rules to keep in mind while coding:
-1-
int size = Vector.size(