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.
每次从服务器请求特定文件时,我都需要一种将条目记录到数据库中的方法。该文件可以是任何类型,甚至是图像或其他媒体。
是否也可以记录哪个 IP 地址或主机名请求了该文件?
语言是什么?HTTP 处理程序技术?
示例:java/servlet, ruby/rails, php/apache...
java/servlet, ruby/rails, php/apache
无论哪种情况,您都可以轻松分析日志文件:HTTP 日志文件包含 ip、文件名、时间戳。
perl+DBI解析 apache 的配置并将下载计数到数据库中将是十行代码。坚持它 int cron 并完成。
perl+DBI