PHP cookie 太多
网页上有太多 php cookie 会显着降低速度吗?在我创建的一个网站上,我正在考虑添加一个功能,这会很好,但需要存储相当多的 php cookie。这会让网站变慢吗?
Will having too many php cookies on a webpage slow it down a significant amount? On a site I've created I'm considering adding a feature, which would be nice, but require quite a few php cookies to be stored. Will this make the site slower?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不会,但 cookie 长度有限制。仅保存必要的信息(安全令牌)并从您的服务器获取
It won't, but there is limit for cookie length. Save only necessary informations (security token) and take it from your server instead
您的浏览器执行的每个 http 请求都会将 HTTP Cookie 传输到服务器。
如果您有少量 cookie,您不会看到任何差异。
HTTP Cookies are transmitted to the server for each http request your browser does.
If you have a few number of cookies, you won't see any difference.