使用很多cookie而不是多次从mysql表中读取数据好不好?
我想创建一个网站,每个注册用户都可以自定义网站的外观。例如:背景颜色、项目顺序、侧边栏中的小部件等等。
我的计划是将设置保存在 mysql 表中并为每个设置创建 cookie,因此只有在 cookie 不可用时我才应该从 mysql 读取数据...
这是一个好主意还是 cookie 会比服务器减慢更多只使用mysql?
谢谢!
I want to create a website where each registered user can customize the look of the website. E.g.: the background color, the order of items, the widgets from the sidebar, and things like these.
My plan is to save the settings in a mysql table and create cookies for each setting, so I should read the data from mysql only if the cookies are not available …
Is this a good idea or the cookies will slow down the server much more than using only mysql?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Cookie 仅适用于单台机器。如果用户在使用一台计算机时设置值,则这些值在任何其他计算机上将不可用。
启动查询缓存并使用MySQL。它会让您的用户更满意。
Cookies are only good for a single machine. If the user sets values while using one machine those values won't be available on any other machine.
Start the query cache and use MySQL. It will make your users happier.