| From: | The Hermit Hacker <scrappy(at)hub(dot)org> |
|---|---|
| To: | "Thomas T(dot) Thai" <tom(at)minnesota(dot)com> |
| Cc: | PostgreSQL General <pgsql-general(at)postgresql(dot)org> |
| Subject: | Re: mnogosearch -- pgsql seem so slow, please help me find out why |
| Date: | 2001-01-15 01:11:14 |
| Message-ID: | Pine.BSF.4.31.0101142110361.21849-100000@thelab.hub.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
On Thu, 11 Jan 2001, Thomas T. Thai wrote:
> pgsql 7.1-current, mnogosearch-3.1.8, netbsd/alpha-1.5.1-current, dec
> alpha 500, 1G ram, uw-scsi
>
> i'm trying to find out why postgres is the bottle neck in my searches with
> mnogosearch. i've tried both the search.c and php version of search and
> they both took up to 50 seconds for a one word search. this is with the
> system sitting pretty much idle.
>
> 'select * from url' from psql monitor took 59 seconds.
>
> mnwork=# explain select * from url;
> NOTICE: QUERY PLAN:
>
> Seq Scan on url (cost=0.00..14473.56 rows=99256 width=144)
>
> EXPLAIN
Unless there is a WHERE clause to work with, it will always return all
rows, and always use a SeqSearch ...
| From | Date | Subject | |
|---|---|---|---|
| Next Message | The Hermit Hacker | 2001-01-15 01:11:31 | Re: Does PostgreSQL support Dynamic SQL? |
| Previous Message | Mike Castle | 2001-01-15 01:05:05 | Re: Re: starting PGSQL automatically on Redhat 6.2 |