Re: any way to use indexscan to get last X values

From: "Shridhar Daithankar" <shridhar_daithankar(at)persistent(dot)co(dot)in>
To: pgsql-performance(at)postgresql(dot)org
Subject: Re: any way to use indexscan to get last X values
Date: 2003-06-16 07:22:00
Message-ID: 3EEDBD70.15023.3CCA80F@localhost
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On 16 Jun 2003 at 9:08, Tomaz Borstnar wrote:
> So this really means major increase of performance for real situation -
> forum with over 85 000 messages where you get rid of full scan and 2 full
> sorts to display list of msgs which happens a lot. You can always use some
> query/page caching things, but then people start to post duplicates,
> because they think the message did not make it into the database.

OTOH, I was thinking of your original problem. If you could have two identical
tables, one to store incoming posts and other to store approved posts, that
should be lot more simpler.

Of course you need to vacuum much more if you are deleting from in queue but
the kind of database you are handling, me need not tell you about vacuum..

Just a though..

Bye
Shridhar

--
Drew's Law of Highway Biology: The first bug to hit a clean windshield lands
directly in front of your eyes.

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Bruno Wolff III 2003-06-16 08:07:18 Re: left join performance problem
Previous Message Tomaz Borstnar 2003-06-16 07:08:49 Re: any way to use indexscan to get last X values