Differences From Artifact [6d4566e942]:
- File attic/synchash.scm — part of check-in [101ee7c52b] at 2021-03-06 04:39:46 on branch v1.65-real-chicken-5 — Try a grounds-up switch to chicken-5 (user: matt, size: 4909) [annotate] [blame] [check-ins using] [more...]
- File synchash.scm — part of check-in [14e9c3fb65] at 2018-02-16 10:51:55 on branch v1.65-license-update — Update license blurbs (user: mrwellan, size: 4909) [annotate] [blame] [check-ins using]
To Artifact [ea42164096]:
- File attic_modular/synchash.scm — part of check-in [5d8e30ec14] at 2021-03-06 04:45:53 on branch v1.65-real-chicken-5 — wip (user: matt, size: 4949) [annotate] [blame] [check-ins using]
- File synchash.scm — part of check-in [69dd64de99] at 2021-02-12 08:35:31 on branch v1.6569-multi-db-wip — wip (user: matt, size: 4949) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
25 26 27 28 29 30 31 32 33 34 35 36 37 38 | (use format) (use srfi-1 srfi-69 sqlite3) (import (prefix sqlite3 sqlite3:)) (declare (unit synchash)) (declare (uses db)) (declare (uses server)) (include "db_records.scm") (define (synchash:make) (make-hash-table)) ;; given an alist of objects '((id obj) ...) ;; 1. remove unchanged objects from the list | > > > > | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | (use format) (use srfi-1 srfi-69 sqlite3) (import (prefix sqlite3 sqlite3:)) (declare (unit synchash)) (declare (uses db)) (declare (uses server)) (declare (uses dbmod)) (import dbmod) (include "db_records.scm") (define (synchash:make) (make-hash-table)) ;; given an alist of objects '((id obj) ...) ;; 1. remove unchanged objects from the list |
︙ | ︙ |