File: todo.md

package info (click to toggle)
postgresql-plproxy 2.11.0-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 564 kB
  • sloc: ansic: 3,476; sql: 1,136; lex: 340; yacc: 171; makefile: 93; sh: 18; awk: 14
file content (29 lines) | stat: -rw-r--r-- 617 bytes parent folder | download | duplicates (6)
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)