Differences From Artifact [18b3b766]:
- File crystalize.rkt — part of check-in [187278e6] at 2020-05-10 21:36:36 on branch trunk — Collect cache INSERTs in a transaction, delegate to a thread (user: joel, size: 12045) [annotate] [blame] [check-ins using]
To Artifact [4e54a177]:
- File crystalize.rkt — part of check-in [70bf798f] at 2020-05-11 01:55:38 on branch trunk — Bugfix cache-index-entries-only!, add to docs (user: joel, size: 12071) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
273 274 275 276 277 278 279 280 281 282 |
(void
(thread
(lambda ()
(call-with-transaction
(cache-conn)
(lambda ()
(cache-index-entries! pagenode doc)
(insert-one! (cache-conn)
(make-cache:article
#:title-plain title
| > | | 273 274 275 276 277 278 279 280 281 282 283 284 285 |
(void
(thread
(lambda ()
(call-with-transaction
(cache-conn)
(lambda ()
(cache-index-entries! pagenode doc)
(delete-article! pagenode)
(insert-one! (cache-conn)
(make-cache:article
#:title-plain title
#:conceal "blog,feed"
#:page pagenode))))))))
|