blob: 59765517450eaf6f2cf99a1ea22a2386b09f9e6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
- Support for object pointers as map keys
std::map<std::shared_ptr<Product>, quantity> cart;
Interestingly, wrapping the pointer into a composite value type seems
to work (at least compiles).
See email from axel50397@gmail.com/23-Nov-2014.
- Use bulk statements for containers
Should be fairly straightforward since container tables are simple. For
smart containers, can we group all the DELETEs, UPDATEs, and INSERTs?
- Ability to define custom indexes on container values
Currently we only support id and index but there is no good reason (other
than complexity) why we shouldn't support values as well. Will need to
support composite values.
See email from marcos.glez@gmail.com/22-Aug-2014.
|