Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
首先感谢您的观看。
进行提前点击计数器的最佳方法是什么(例如,按浏览量排序 [今天] | [昨天] [本周] [上周] [本月] [上个月] [所有时间])。
使用平面文件还是mysql更好?
这是我想出的MYSQL结构。
id (type: int(11)) link_id (type: int(11)) date (type: date) counter (type: int(11))
请你能告诉我什么是最有效的方法。
SQL 与适当的索引一起使用。SQL 数据本质上存储在磁盘上,使它们更有价值的是事实索引可以更快地查找特定记录/数据。
您的方案应类似于:
Links(id:int, href:string) Clicks(link_id:int, time:int, counter:int)