public void GetRecentMatchesReport(HttpListenerContext context) { string report = _enableCache ? _recentMatchesReportCache[ReqExtracters.ExtractCount(context.Request)]: _db.MakeRecentMatchesReport(ReqExtracters.ExtractCount(context.Request)); this.SendResponse(context.Response, report, HttpStatusCode.OK); }