AW: Berkeley DB... - Mailing list pgsql-hackers

From Zeugswetter Andreas SB
Subject AW: Berkeley DB...
Date
Msg-id 219F68D65015D011A8E000006F8590C604AF7DA5@sdexcsrv1.f000.d0188.sd.spardat.at
Whole thread Raw
List pgsql-hackers
> ... that being said (and I took a quick test with 10000 
> randomly-inserted
> records and fetched them in index order) if the data's in the 
> cache, the
> speed difference is insignificant. 

As long as everything fits into the system cache and is 
already in there, this test is moot.

> I did this:
> 
> create table foo (a int not null,b char(100));
> create index foo_a on foo(a);
> for(i=0; i<10000; i++) {
>     insert into foo(a,b) values( `((i*3467)%10000)` , 'fusli');
> }

here you need to reboot the machine or make sure nothing is cached. 
then time the following and make sure it uses the index afterwards.

> select a from foo order by a; 

Andreas


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: gram.y PROBLEM with UNDER
Next
From: Zeugswetter Andreas SB
Date:
Subject: AW: More Performance