溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

vue服務(wù)端渲染緩存的示例分析

發(fā)布時(shí)間:2021-08-18 15:07:47 來(lái)源:億速云 閱讀:139 作者:小新 欄目:web開(kāi)發(fā)

這篇文章給大家分享的是有關(guān)vue服務(wù)端渲染緩存的示例分析的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。

服務(wù)端渲染簡(jiǎn)介

服務(wù)端渲染不是一個(gè)新的技術(shù);在 Web 最初的時(shí)候,頁(yè)面就是通過(guò)服務(wù)端渲染來(lái)返回的,用 PHP 來(lái)說(shuō),通常是使用 Smarty 等模板寫模板文件,然后 PHP 服務(wù)端框架將數(shù)據(jù)和模板渲染為頁(yè)面返回,這樣的服務(wù)端渲染有個(gè)缺點(diǎn)就是一旦要查看新的頁(yè)面,就需要請(qǐng)求服務(wù)端,刷新頁(yè)面。

但如今的前端,為了追求一些體驗(yàn)上的優(yōu)化,通常整個(gè)渲染在瀏覽器端使用 JS 來(lái)完成,配合 history.pushState 等方式來(lái)做單頁(yè)應(yīng)用(SPA: Single-Page Application),也收到不錯(cuò)的效果,但是這樣還是有一些缺點(diǎn):第一次加載過(guò)慢,用戶需要等待較長(zhǎng)時(shí)間來(lái)等待瀏覽器端渲染完成;對(duì)搜索引擎爬蟲(chóng)等不友好。這時(shí)候就出現(xiàn)了類似于 React,Vue 2.0 等前端框架來(lái)做服務(wù)端渲染。

vue緩存分為頁(yè)面緩存、組建緩存、接口緩存,這里我主要說(shuō)到了頁(yè)面緩存和組建緩存

頁(yè)面緩存:

  在server.js中設(shè)置

const LRU = require('lru-cache')
const microCache = LRU({
 max: 100, // 最大緩存的數(shù)目
 maxAge: 1000 // 重要提示:條目在 1 秒后過(guò)期。
})
const isCacheable = req => {
 //判斷是否需要頁(yè)面緩存
  if (req.url && req.url === '/') {
    return req.url
  } else {
   return false
  }
}
app.get('*', (req, res) => {
const cacheable = isCacheable(req)
  if (cacheable) {
    const hit = microCache.get(req.url)
     if (hit) {
    return res.end(hit)
  }
 }
const errorHandler = err => {
 if (err && err.code === 404) {
  // 未找到頁(yè)面
  res.status(404).sendfile('public/404.html');
 } else {
  // 頁(yè)面渲染錯(cuò)誤
  res.status(500).end('500 - Internal Server Error')
  console.error(`error during render : ${req.url}`)
  console.error(err)
 }
}
const context = {
 title: 'vue',
 keywords: 'vue-ssr服務(wù)端腳手架',
 description: 'vue-ssr-template, vue-server-renderer',
 version: v,
 url: req.url,
 cookies: req.cookies
}
renderer.renderToString(context, (err, html) => {
 if (err) {
  return errorHandler(err)
 }
 res.end(html)
 microCache.set(req.url, html) // 設(shè)置當(dāng)前緩存頁(yè)面的內(nèi)容
})
})

 組建緩存:

在server.js中設(shè)置如下:

function createRenderer(bundle, template) {
 return require('vue-server-renderer').createBundleRenderer(bundle, {
  template,
  cache: LRU({
   max: 1000,
   maxAge: 1000 * 60 * 5 // 組建緩存時(shí)間
  })
 })
}
let renderer
if (isProd) {
 // 生產(chǎn)環(huán)境使用本地打包文件來(lái)渲染
 const bundle = require('./output/vue-ssr-bundle.json')
 const template = fs.readFileSync(resolve('./output/index.html'), 'utf-8')
 renderer = createRenderer(bundle, template)
} else {
 // 開(kāi)發(fā)環(huán)境使用webpack熱更新服務(wù)
 require('./build/dev-server')(app, (bundle, template) => {
  renderer = createRenderer(bundle, template)
 })
}

 要緩存的組建

export default {
 name: 'Home',
 title() {
  return {
   title: 'vue-ssr',
   keywords: 'vue-ssr服務(wù)端腳手架, home',
   description: 'vue-ssr-template, vue-server-renderer, home'
  }
 },
 created() {
 },
 computed: {},
 asyncData({ store }) {},
 methods: {},
 serverCacheKey: props => props.id
}

 serverCacheKey 返回的 key 應(yīng)該包含足夠的信息,來(lái)表示渲染結(jié)果的具體情況。如果渲染結(jié)果僅由 props.item.id 決定,則上述是一個(gè)很好的實(shí)現(xiàn)。但是,如果具有相同 id 的 item 可能會(huì)隨時(shí)間而變化,或者如果渲染結(jié)果依賴于其他 prop,則需要修改 serverCacheKey 的實(shí)現(xiàn),以考慮其他變量。如果 serverCacheKey返回常量將導(dǎo)致組件始終被緩存,這對(duì)純靜態(tài)組件是有好處的。

感謝各位的閱讀!關(guān)于“vue服務(wù)端渲染緩存的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

vue
AI