portl4t / ts-flv

FLV streaming media, implement as plugin of Apache TrafficServer.
14 stars 14 forks source link

插件使用过程中的一些疑惑 #3

Open KevinXu086 opened 8 years ago

KevinXu086 commented 8 years ago

首先说下我的应用场景: 我缓存中已经保存了一个完整的flv文件: curl -o test.flv -v http://192.168.0.106:8080/test.flv 首次使用后会缓存整个flv文件 接着我再用: curl -o test.flv -v http://192.168.0.106:8080/test.flv?start=600 发现会返回裁剪后的mp4文件,但是缓存不命中!我认为会命中缓存,然后返回裁剪后的mp4文件 为了保证cacheurl 一致,我还用了cacheurl插件,使得http://192.168.0.106:8080/test.flv?start=600的cacheurl 是http://192.168.0.106:8080/test.flv,但是发现缓存还是不命中! 能否请教下原因,谢谢! 我的cacheurl.config 配置: http://(._).(._).(._).(._):(._)/(._).flv\?(.*) http://$1.$2.$3.$4:$5/$6.flv

portl4t commented 8 years ago

配置的时候需要指明使用这个插件,需要check一下你的配置是否有走这个插件,另外你提到flv又提到mp4,是什么情况?