Overview
Comment: | Added some hints to query-rest |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.65 |
Files: | files | file ages | folders |
SHA1: |
12cc9e54faa93f80c97db03b20d7a98e |
User & Date: | matt on 2020-10-22 23:57:24 |
Other Links: | branch diff | manifest | tags |
Context
2020-10-23
| ||
16:00 | fixed indentation check-in: 770f557677 user: pjhatwal tags: v1.65 | |
2020-10-22
| ||
23:57 | Added some hints to query-rest check-in: 12cc9e54fa user: matt tags: v1.65 | |
2020-10-21
| ||
22:43 | Fixed Run Summary view test sorting. check-in: 565e5d6cf6 user: matt tags: v1.65 | |
Changes
Modified rmt.scm from [95448ebca4] to [58a6da9ea5].
︙ | |||
57 58 59 60 61 62 63 | 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | - + - + - + | (define *send-receive-mutex* (make-mutex)) ;; should have separate mutex per run-id (define *rmt-query-last-call-time* 0) (define *rmt-query-last-rest-time* 0) ;; last time there was at least a 1/2 second rest - giving other processes access to the db ;; NOTE: This query rest algorythm will not adapt to long query times. REDESIGN NEEDED. TODO. FIXME. ;; |
︙ |