You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pollen/scribblings/cache.scrbl

33 lines
1.5 KiB
Plaintext

11 years ago
#lang scribble/manual
@(require scribble/eval pollen/cache pollen/world (for-label racket pollen/world pollen/render pollen/file sugar txexpr))
11 years ago
@(define my-eval (make-base-eval))
@(my-eval `(require pollen))
11 years ago
@title{Cache}
11 years ago
@defmodule[pollen/cache]
The slowest part of a @racket[render] is parsing and decoding the source file. Often, previewing a single source file necessarily means decoding others (for instance templates, or other source files that are linked into the main source file). But usually, only one source file is changing at a time. Therefore, Pollen stores copies of the exports of source files — namely, whatever is stored in @code[(format "~a" world:main-export)] and @code[(format "~a" world:meta-export)] — in the cache so they can be reused.
11 years ago
11 years ago
@defproc[
(cached-require
[source-path pathish?]
[key (or/c 'doc 'metas)])
11 years ago
(or/c txexpr? hash? integer?)]
Similar to @racket[(dynamic-require _source-path _key)], except that it first tries to retrieve the requested value out of the cache. If it's not there, or out of date, @racket[dynamic-require] is used to update the value.
11 years ago
The only keys supported are @racket['doc] and @racket['metas].
11 years ago
11 years ago
If you want the speed benefit of the cache, you should @bold{always} use @racket[cached-require] to get data from Pollen source files. That doesn't mean you can't still use functions like @racket[require], @racket[local-require], and @racket[dynamic-require]. They'll just be slower.
11 years ago
@defproc[
(reset-cache)
void?]
Clears the cache. When only the nuclear option will do.
11 years ago