Hi, I am new to squid and I have some usage questions regarding Squid 1. Is it possible to gracefully restart Squid, like Apache? (currently I only know shutdown and restart) 2. Are there any recommended commandline clients, rather then the cachemanager web interface so I can know more about the stats? 3. Is the following the correct forumla to calculate stats? CACHE_HIT = (cat access.log | grep HIT | wc -l) / (cat access.log | grep TCP | wc -l) CACHE_MEM_HIT = (cat access.log | grep MEM_HIT | wc -l) / (cat access.log | grep TCP | wc -l) Thanks. Roy