Some cosmetic fixes in ANFANG
[dbsrgits/DBIx-Class.git] / Features_09
1 (Potential) Features for 0.09
2 =============================
3
4 Row/find caching - would be pretty useful
5  - Need to have good definitions of when the cache should be queried and when invalidated
6  - Be able to supply own expiry?
7  - Be able to invalidate manually? Single item / entire cache / single table
8
9 Remove compose_connection / DB.pm
10  - Everyone has probably forgotten what this is anyway..
11
12 Syntax improvements?
13  - "as" to "alias" ?
14  - "belongs_to" to "contains/refers/something"
15
16 Using inflated objects/references as values in searches
17  - should deflate then run search
18
19 SQL/API feature complete?
20  - UNION
21  - function calls on the LHS of conditions..
22
23 Moosification - ouch
24
25 Metamodel stuff - introspection
26
27 Magically "discover" needed joins/prefetches and add them
28  - eg $books->search({ 'author.name' => 'Fred'}), autoadds: join => 'author'
29  - also guess aliases when supplying column names that are on joined/related tables
30
31 Storage API/restructure
32  - call update/insert etc on the ResultSource, which then calls to storage
33  - handle different storages/db-specific code better
34  - better cross-db code .. eg LIKE/ILIKE
35
36 Relationships
37  - single vs filter, discrepancies.. remove one of them and make behave the same?
38
39 Documentation - improvements
40  - better indexing for finding of stuff in general
41  - more cross-referencing of docs