AW: Berkeley DB...

Поиск
Список
Период
Сортировка
От Zeugswetter Andreas SB
Тема AW: Berkeley DB...
Дата
Msg-id 219F68D65015D011A8E000006F8590C604AF7DA4@sdexcsrv1.f000.d0188.sd.spardat.at
обсуждение исходный текст
Список pgsql-hackers
> The select:
> 0.75  MySQL-MyISAM
> 0.77  MySQL-BDB
> 2.43  PostgreSQL
> 
> I'll do a "real" test once the BDB support in MySQL is stable 
> enough to run the MySQL benchmark suite.

It is the sequential scan timings that we would be very interested in.

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');
}

time this:
select count(*) from foo where b<>'not there';

Andreas


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Ed Loehr
Дата:
Сообщение: parser oddity (t.count)
Следующее
От: Ed Loehr
Дата:
Сообщение: vacuum analyze feedback