Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo in caching code sample #249

Open
Oleg-Arkhipov opened this issue Jun 14, 2019 · 0 comments
Open

Typo in caching code sample #249

Oleg-Arkhipov opened this issue Jun 14, 2019 · 0 comments

Comments

@Oleg-Arkhipov
Copy link

https://ssr.vuejs.org/guide/caching.html#page-level-caching

const LRU = require('lru-cache')

const renderer = createRenderer({
  cache: LRU({
    max: 10000,
    maxAge: ...
  })
})

According to the LRU docs, its export is a constructor, so the code should be:

const LRU = require('lru-cache')

const renderer = createRenderer({
  cache: new LRU({
    max: 10000,
    maxAge: ...
  })
})

Also if I still try the first variant, my SSR server just doesn't respond to requests.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant