/// <summary>
 /// Sets this ip as not beeing flooding, untill the next post
 /// </summary>
 protected virtual void ClearFlooding(ControllerContext context)
 {
     var minTime = MinTime;
     var cache = new CacheWrapper(context.HttpContext);
     cache.SetTimePassed(context.HttpContext.Request.UserHostAddress, minTime);
 }