-------- Original Message --------
Subject: Re: [PERFORM] Poor OFFSET performance in PostgreSQL 9.1.6
From: Greg Spiegelberg <
gspiegelberg@gmail.com>
Date: Wed, August 28, 2013 2:26 pm
To: 
fburgess@radiantblue.com
Cc: pgsql-performance <
pgsql-performance@postgresql.org>
Two solutions come to mind.  First possibility is table partitioning on the column you're sorting.  Second, depending on your application, is to use a cursor.  Cursor won't help with web applications however a stateful application could benefit.
 
HTH
-Greg