Overview
Comment: | Added reseting of timeout based on non sync or ping accesses to db |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
2ddaa66a7b56a0cc0b9272e56c9233ea |
User & Date: | matt on 2012-11-22 16:16:51 |
Other Links: | manifest | tags |
Context
2012-11-26
| ||
07:16 | Removed check for age on monitor.db, changed no-use run time on server to 45 minutes check-in: 65d946ec7f user: matt tags: trunk | |
2012-11-22
| ||
16:16 | Added reseting of timeout based on non sync or ping accesses to db check-in: 2ddaa66a7b user: matt tags: trunk | |
2012-11-21
| ||
09:59 | Increased server lifetime to 50 hrs. check-in: 8802d93a21 user: mrwellan tags: trunk, v1.5201 | |
Changes
Modified server.scm from [159c9d5292] to [8dbbdd3b70].
︙ | |||
134 135 136 137 138 139 140 | 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 | - + + + + + + + | ;; The heavy lifting ;; ;; make-vector-record cdb packet client-sig qtype immediate query-sig params qtime ;; (let loop ((queue-lst '())) (let* ((rawmsg (receive-message* pull-socket)) |
︙ | |||
167 168 169 170 171 172 173 | 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 | - + + - + + + - + | (begin (sleep 4) (loop)))))) (iface (cadr server-info)) (pullport (caddr server-info)) (pubport (cadddr server-info)) ;; id interface pullport pubport) (zmq-sockets (server:client-connect iface pullport pubport)) |
︙ |