使用很多cookie而不是多次从mysql表中读取数据好不好?

发布于 2024-11-02 16:28:11 字数 195 浏览 0 评论 0原文

我想创建一个网站,每个注册用户都可以自定义网站的外观。例如:背景颜色、项目顺序、侧边栏中的小部件等等。

我的计划是将设置保存在 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 技术交流群。

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

发布评论

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

评论(1

凶凌 2024-11-09 16:28:11

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.

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