Differences From Artifact [65c872df95]:
- File server.scm — part of check-in [04ba871116] at 2013-03-19 13:29:33 on branch newdashboard — Added logic to not attempt to process cached-writes if they were processed within the last 400 ms. Added stats on cached writes (user: mrwellan, size: 4054) [annotate] [blame] [check-ins using] [more...]
To Artifact [44714046fc]:
- File server.scm — part of check-in [dfd75df083] at 2013-04-09 00:17:05 on branch trunk — Added daemon support for server. Also added auto launch of server if not running (user: matt, size: 4078) [annotate] [blame] [check-ins using] [more...]
︙ | |||
18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | + | (declare (uses common)) (declare (uses db)) (declare (uses tasks)) ;; tasks are where stuff is maintained about what is running. (declare (uses synchash)) (declare (uses http-transport)) (declare (uses zmq-transport)) (declare (uses daemon)) (include "common_records.scm") (include "db_records.scm") (define (server:make-server-url hostport) (if (not hostport) #f |
︙ |