ColdFusion 中 COOKIE 和 CLIENT 作用域之间的区别?
我一直在谷歌搜索,但没有找到答案。
我非常了解 ColdFusion 中 cookie
范围的作用。但我并不能 100% 确定 client
范围的目的或其与 cookie
范围之间的差异。 它变得有点混乱,因为 client
范围的存储方法之一可以设置为 cookie。
有人可以提供一个示例或用例来说明什么吗?区别在于,我什么时候会使用其中一种?
I have been googling, but haven't found an answer.
I understand pretty well what the cookie
scope does in ColdFusion. But I'm not 100% sure about the purpose of the client
scope or the differences between it and the cookie
scope.
It gets a bit muddy because one of the storage methods for the client
scope can be set to cookie.
Can someone supply an example, or use-case, that illustrates what the differences are and when I would use one versus the other?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Cookie
范围将数据作为 cookie 保留在客户端浏览器上。保持它很小,因为它是随着每个奇怪的 http 请求发送的。 :)Client
作用域可以将数据持久保存在 DB 上(或者 Windows 上的寄存器,BAD BAD BAD,但它是默认值)。它经常在具有非粘性会话的集群环境中使用,其中请求可能被路由到会话数据不可用的任何服务器。我没有链接,但您可以在 CF 开发指南中阅读有关它们的更多信息。
Cookie
scope persists the data as cookies on client's browser. Keep it small as it is sent along Every freaking http request. :)Client
scope can persist the data on DB (or registery on Windows, BAD BAD BAD, but it is the default). It is used often in a clustered env with non-sticky session, where a request might be routed to any server where Session data is not available.I don't have the link, but you can read more on them in CF Dev Guide.