On Sat, Nov 20, 2010 at 1:43 AM, Ryan Pusztai <rpusz...@gmail.com> wrote: > Also I am wondering how to deal with queries that may contain, as much as > 10,000 - 100,000 results . I am planning on using MySQL for this.
If you're using the default Orbit model ORM, the thing I would worry about is tables with _lots_ of columns, which all get brought into the model (i.e. the classic 'select * from...' SQL problem) You might need to work directly with MySQL for this one, so you can grab the first 'page' and so forth for really big queries. Otherwise, only one way to find out ;) steve d. _______________________________________________ Kepler-Project mailing list Kepler-Project@lists.luaforge.net http://lists.luaforge.net/cgi-bin/mailman/listinfo/kepler-project http://www.keplerproject.org/