-
Notifications
You must be signed in to change notification settings - Fork 25
/
TODO
35 lines (25 loc) · 1.22 KB
/
TODO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
-*-outline-*-
* doc, docstrings
* more tests! (See coverage)
* use tags to distinguish tests that require net connectivity from others
Net tests need to not use cache (easier when these are separated! -- #123)
But... commit cache into repo for non-net tests
* #122: implement TTL support in cache
* #123: refactor queryservice to separate querying, throttling, and caching
queryservice implements too much functionality. It should be refactored into:
a basic query service that executes queries, period
a thin throttling service based on the basic query service
a caching service on the throttled service (since that's all the caching service should use)
separate caching, throttling, querying, parsing/facades
* #124: Support large search result sets
support webenv history
use web history + iterators for chained searching
* add test tags to isolate tests against live ncbi data (ie not pyvcr tests)
* QueryService:
** Fetch & compare
** TTL support in cache, request-specific TTLs?
** optional db -> options map (esp. for rettype & retmode)
** deal with caching status 200 replies that are bogus (e.g., truncated xml) -- callbacks?
** provide uncached access
** support history
** default args is misplaced -- it should go in client instead