going to institute a simple cache
This commit is contained in:
parent
8a7661df5c
commit
77fc448ed9
7
js-assembler/cache.rkt
Normal file
7
js-assembler/cache.rkt
Normal file
|
@ -0,0 +1,7 @@
|
|||
#lang racket/base
|
||||
(define-struct cached-entry (real-path ;; path to a module.
|
||||
whalesong-version ;; string
|
||||
md5 ;; md5 of the original source in real-path
|
||||
bytes)
|
||||
#:transparent) ;; bytes
|
||||
|
|
@ -52,6 +52,13 @@
|
|||
(void))))
|
||||
|
||||
|
||||
(define-struct cached-entry (real-path ;; path to a module.
|
||||
whalesong-version ;; string
|
||||
md5 ;; md5 of the original source in real-path
|
||||
bytes)
|
||||
#:transparent) ;; bytes
|
||||
|
||||
|
||||
|
||||
|
||||
(define-struct js-impl (name ;; symbol
|
||||
|
|
Loading…
Reference in New Issue
Block a user