returns true if we aren't to cache anything
()
| 40 | |
| 41 | // returns true if we aren't to cache anything |
| 42 | func (c *Cache) noCache() bool { |
| 43 | return c.expireDuration <= 0 |
| 44 | } |
| 45 | |
| 46 | // SetExpireInterval sets the interval at which the cache expiry runs |
| 47 | // |
no outgoing calls