ColdFusion 中 COOKIE 和 CLIENT 作用域之间的区别?

发布于 2024-11-01 21:51:43 字数 264 浏览 8 评论 0原文

我一直在谷歌搜索,但没有找到答案。

我非常了解 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

云柯 2024-11-08 21:51:43

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文