Re: [squid-users] YouTube and other streaming media (caching)

2008-11-08 Thread Kinkie
On Mon, Nov 3, 2008 at 6:32 PM, Horacio H. [EMAIL PROTECTED] wrote: Hi everybody, regarding this issue: http://wiki.squid-cache.org/WikiSandBox/Discussion/YoutubeCaching For those interested, that page has been moved to

Re: [squid-users] YouTube and other streaming media (caching)

2008-11-08 Thread Anton
Hello! Aside from redirect bug, any known issues in YouTube caching? Would I risk too much if I put this on the production squid? On Saturday 08 November 2008 18:31, Kinkie wrote: On Mon, Nov 3, 2008 at 6:32 PM, Horacio H. [EMAIL PROTECTED] wrote: Hi everybody, regarding this issue:

Re: [squid-users] YouTube and other streaming media (caching)

2008-11-03 Thread Horacio H.
Hi everybody, regarding this issue: http://wiki.squid-cache.org/WikiSandBox/Discussion/YoutubeCaching I came up with a workaroud, it's a rewriter script in PHP (sorry I'm not good at Perl, but maybe someone would be kind enough to later share a transcoded version... jeje) NOTE 1: Use this

Re: [squid-users] YouTube and other streaming media (caching)

2008-06-10 Thread Horacio Herrera Gonzalez
Thanks! I've opened the bugzilla ticket. BTW, the script is in perl, I forgot the first line of the script (sorry!): - #!/usr/bin/perl $|=1; while () { @X = split; $url = $X[0]; $url =~ [EMAIL PROTECTED]://(.*?)/get_video\?(.*)video_id=(.*?)[EMAIL

Re: [squid-users] YouTube and other streaming media (caching)

2008-06-09 Thread Adrian Chadd
Cool! Could you drop this stuff into a bugzilla ticket so it doesn't get lost? Thanks! Adrian On Mon, Jun 09, 2008, Horacio Herrera Gonzalez wrote: Hi Adrian, Ray and everyone... Here is a little contribution for the store_url_rewrite script, this part deals with youtube and google video

Re: [squid-users] Youtube and other streaming media (caching)

2008-06-03 Thread Rodrigo de Oliveira Gomes
Henrik Nordstrom escreveu: On mån, 2008-06-02 at 18:27 -0300, Rodrigo de Oliveira Gomes wrote: Hello Guys! Please, is the information about the message (http://www.squid-cache.org/mail-archive/squid-users/200804/0420.html#replies) work in squid version 3.0 stable 5? No, only 2.7 so

Re: [squid-users] Youtube and other streaming media (caching)

2008-06-03 Thread Amos Jeffries
Rodrigo de Oliveira Gomes wrote: Henrik Nordstrom escreveu: On mån, 2008-06-02 at 18:27 -0300, Rodrigo de Oliveira Gomes wrote: Hello Guys! Please, is the information about the message (http://www.squid-cache.org/mail-archive/squid-users/200804/0420.html#replies) work in squid version 3.0

Re: [squid-users] Youtube and other streaming media (caching)

2008-06-03 Thread Rodrigo de Oliveira Gomes
Amos and group, Thanks your answers! :-) Does anyboyd know how can I reserve 4 MB bandwith of 16 MB link internet only to my users access youtube sites? I use FreeBSD 7.0 and squid 3.0-STABLE5. Thanks. Rodrigo Gomes:. Amos Jeffries escreveu: Rodrigo de Oliveira Gomes wrote:

Re: [squid-users] Youtube and other streaming media (caching)

2008-06-03 Thread Amos Jeffries
Amos and group, Thanks your answers! :-) Does anyboyd know how can I reserve 4 MB bandwith of 16 MB link internet only to my users access youtube sites? I use FreeBSD 7.0 and squid 3.0-STABLE5. Sounds to me like an issue for QoS and the ZPH patch to Squid. The ZPH patch for

[squid-users] Youtube and other streaming media (caching)

2008-06-02 Thread Rodrigo de Oliveira Gomes
Hello Guys! Please, is the information about the message (http://www.squid-cache.org/mail-archive/squid-users/200804/0420.html#replies) work in squid version 3.0 stable 5? thanks

Re: [squid-users] Youtube and other streaming media (caching)

2008-06-02 Thread Henrik Nordstrom
On mån, 2008-06-02 at 18:27 -0300, Rodrigo de Oliveira Gomes wrote: Hello Guys! Please, is the information about the message (http://www.squid-cache.org/mail-archive/squid-users/200804/0420.html#replies) work in squid version 3.0 stable 5? No, only 2.7 so far. But is likely to be seen

[squid-users] YouTube and other streaming media (caching)

2008-04-16 Thread Ray Van Dolson
Hello all, I'm beginning to implement a Squid setup and am in particular looking to cache Youtube as it is a significant chunk of our traffic and we don't want to outright block it (yet). I'm using squid-2.6.STABLE6 from RHEL 5.1 (latest errata). I've been reading around a lot and am seeking a

Re: [squid-users] YouTube and other streaming media (caching)

2008-04-16 Thread Adrian Chadd
The problem with caching Youtube (and other CDN content) is that the same content is found at lots of different URLs/hosts. This unfortunately means you'll end up caching multiple copies of the same content and (almost!) never see hits. Squid-2.7 -should- be quite stable. I'd suggest just running

Re: [squid-users] YouTube and other streaming media (caching)

2008-04-16 Thread Ray Van Dolson
On Thu, Apr 17, 2008 at 08:11:51AM +0800, Adrian Chadd wrote: The problem with caching Youtube (and other CDN content) is that the same content is found at lots of different URLs/hosts. This unfortunately means you'll end up caching multiple copies of the same content and (almost!) never see

Re: [squid-users] YouTube and other streaming media (caching)

2008-04-16 Thread Adrian Chadd
On Wed, Apr 16, 2008, Ray Van Dolson wrote: And here is the store_url_rewrite script. I added some logging: Cool! Could likely remove the last elsif block at this point as it's catching on the previous one now. But this is working great! Probably some tuning yet to be done. Maybe