Skip to content

Commit ab24285

Browse files
committed
feat(ssr): allow opting-out of caching by returning false in serverCacheKey
close #8790
1 parent d7a533d commit ab24285

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/server/render.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,12 @@ function renderComponent (node, isRoot, context) {
114114
const registerComponent = registerComponentForCache(Ctor.options, write)
115115

116116
if (isDef(getKey) && isDef(cache) && isDef(name)) {
117-
const key = name + '::' + getKey(node.componentOptions.propsData)
117+
const rawKey = getKey(node.componentOptions.propsData)
118+
if (rawKey === false) {
119+
renderComponentInner(node, isRoot, context)
120+
return
121+
}
122+
const key = name + '::' + rawKey
118123
const { has, get } = context
119124
if (isDef(has)) {
120125
has(key, hit => {
@@ -188,7 +193,7 @@ function renderComponentInner (node, isRoot, context) {
188193
context.activeInstance
189194
)
190195
normalizeRender(child)
191-
196+
192197
const resolve = () => {
193198
const childNode = child._render()
194199
childNode.parent = node

0 commit comments

Comments
 (0)