多少个子域合适?
我正在构建一个目录网站,我想将每个子目录表示为我网站上的子域,例如: car.mydir.com 而不是 mydir.com/car
所以问题是子目录关键字的总数太大了。 例如,您认为 IIS 可以处理 40000 个子域吗?
I'm building a directory website and i want to represent each subdirectory as a subdomain on my website like: car.mydir.com and not mydir.com/car
So the problem is the total number of subdirectory keywords are way too big. Do you think for example IIS can handle 40000 subdomains?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
子域的数量应该不是问题。
使用子域和子 URL 之间的主要区别在于子域是通过 DNS 协议分发的。 该协议的成本很高,因此客户端会缓存信息很长时间(通常是一两天)。
这意味着子域中的任何更改都需要一段时间,直到网络上的每个客户端都会注意到,同时 URL 更改会立即生效。
The number of subdomains shouldn't be a problem.
The main difference between using subdomains and sub-URLs is that subdomains are distributed via the DNS protocol. This protocol is expensive, so clients cache the information for a long time (one or two days usually).
This means that any change in the subdomains will take some time until every client on the net will notice while URL changes are picked up immediately.