Bring out the big-paranoia-harness - make describe_env infallible
[dbsrgits/DBIx-Class.git] / Features_09
CommitLineData
896f90b4 1(Potential) Features for 0.09
2=============================
3
896f90b4 4Row/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
b818fc5d 9Remove compose_connection / DB.pm
896f90b4 10 - Everyone has probably forgotten what this is anyway..
11
12Syntax improvements?
13 - "as" to "alias" ?
14 - "belongs_to" to "contains/refers/something"
896f90b4 15
16Using inflated objects/references as values in searches
896f90b4 17 - should deflate then run search
18
896f90b4 19SQL/API feature complete?
20 - UNION
896f90b4 21 - function calls on the LHS of conditions..
22
23Moosification - ouch
24
81164696 25Metamodel stuff - introspection
26
896f90b4 27Magically "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
896f90b4 31Storage 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
36Relationships
37 - single vs filter, discrepancies.. remove one of them and make behave the same?
38
896f90b4 39Documentation - improvements
40 - better indexing for finding of stuff in general
41 - more cross-referencing of docs