Created
December 5, 2018 16:11
-
-
Save nest-don/0c611cfd43c9d58ff08b9b86c90d0c0e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// GET api/search | |
[HttpGet("{text}")] | |
public IActionResult Get(string text) | |
{ | |
try | |
{ | |
_logger.LogInformation("Query for {0} arrived", text); | |
// Search the cache for query | |
List<SearchResult> cachedResults = GetCachedResults(text); | |
if (cachedResults != null && cachedResults.Count > 0) | |
{ | |
return this.NestResultMultiple(cachedResults, 0, | |
"Taken from cache"); | |
} | |
// Dispatch search jobs with a new search | |
Dictionary<string, SearchQuery> queryServices = | |
new Dictionary<string, SearchQuery>(); | |
SearchQuery query = new SearchQuery(); | |
query.MaxResults = 100; | |
query.Text = text; | |
query = AddQuery(text); | |
foreach (string service in _services) | |
{ | |
queryServices[service] = QueryService(query, service); | |
_logger.LogInformation("Query sent to {0} -> Correlation Id {1}", | |
service, queryServices[service].Id); | |
} | |
// ---------------------- | |
// Do other work here ... | |
// ---------------------- | |
// Collect search results | |
return this.NestResultMultiple( | |
CollectResults(queryServices), 0, | |
"Query successful"); | |
} | |
catch (System.Exception e) | |
{ | |
return StatusCode(500, e); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment