Actions
Feature #185
openSinedon should allow one to obtain specific subsets of the complete query
Status:
New
Priority:
Low
Assignee:
-
Category:
Sinedon
Target version:
Start date:
03/04/2010
Due date:
% Done:
0%
Estimated time:
Deliverable:
Description
I have a case where a sinedon query is too big and runs out of memory (Bug #184). It would nice to break the query into subsets, i.e. LIMIT 1,30; LIMIT 31,60; etc. by accepting a tuple.
Current sinedon:
>>> from appionlib import appiondata as ad >>> p = ad.ApPathData() >>> p.query(results=30) [...]
Requested feature:
>>> from appionlib import appiondata as ad >>> p = ad.ApPathData() >>> p.query(results=(31,60)) [...]
Actions