blob: 1070c71e424a865607549d4706a99d3b36b7337e (
plain)
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
|
= PL/Proxy todo list =
== Near future ==
* Lazy value type cache, per-conn binary I/O decision.
* Clean up the binary-or-not decision. There should be possible
to have partitions with different versions. Requires lazy values.
== Good to have ==
* RUN ON ALL: ignore errors?
* RUN ON ANY: if one con failed, try another
== Just thoughts ==
* Drop plproxy.get_cluster_config()...
* Streaming for big resultsets, to avoid loading them fully in memory.
This needs also backend changes.
* integrate with memcache:
set_object(id, data)
CACHE SET object(id) = data;
get_object(id)
CACHE GET object(id)
|