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)) [...]
Updated by Neil Voss over 14 years ago
- Subject changed from Sinedon show allow one to obtain subsets of the complete query to Sinedon show allow one to obtain specific subsets of the complete query
Updated by Neil Voss over 14 years ago
- Target version set to Appion/Leginon 2.1.0
Updated by Neil Voss over 14 years ago
- Subject changed from Sinedon show allow one to obtain specific subsets of the complete query to Sinedon should allow one to obtain specific subsets of the complete query
Updated by Amber Herold over 14 years ago
- Priority changed from Normal to Low
- Target version changed from Appion/Leginon 2.1.0 to Appion/Leginon Future Version
Actions