Forum Discussion

James_Thomson's avatar
Nov 22, 2006

Compress if RTT is above a certain amount

I'm trying to use the following iRule: when HTTP_REQUEST { set rtt [TCP::rtt] } when HTTP_RESPONSE { if {$rtt < 1600 } { log "NOcompress rtt=[TCP::rtt]" COMPRESS::disable } ...