perkeep/server/camlistored
Aaron Boodman 17e3799cda Turn Closure's DEBUG flag off.
This improves the performance of Promise construction, which
improves the performance of dropping large numbers of files onto
the UI at once.

There is still more we could do to improve dropping large numbers
of files (probably we should implement a work queue and not try
to start uploading them all in parallel), but this is a quick
solution and probably helps other parts of the code as well.

Change-Id: I398ba8d6776b38b1a61a22598099c52dc2130469
2014-02-14 19:18:54 -08:00
..
ui Turn Closure's DEBUG flag off. 2014-02-14 19:18:54 -08:00
.gitignore
README Rearrange the server directory a bit, and update some READMEs 2013-02-02 08:56:57 -08:00
camlistored.go pkg/types/serverconfig: json-tagged struct 2014-02-10 21:49:11 +01:00
option_sqlite.go camlistored: make sqlite a build option. 2012-04-13 16:16:24 -07:00
run_test.go serverconfig/genconfig: add kv queues to all sync handlers. 2013-11-24 15:12:11 -08:00
setup.go uploadhelper: use a type for JSON response, not maps. 2013-02-11 20:33:53 -08:00

README

This is the main Camlistore server.

See also:
 - The storage interface is in <root>/pkg/blobserver
 - The storage implementations are under that e.g. <root>/pkg/blobserver/localdisk
 - The HTTP handlers are implemented in <root>/pkg/blobserver/handlers
 - The UI code is in <root>/server/camlistored/ui