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
[HttpGet("{text}")] | |
public IActionResult Get(string text) | |
{ | |
try | |
{ | |
// 1. Dispatch search jobs | |
Dictionary<string, string> queryServices = new Dictionary<string, string>(); | |
foreach (string service in new List<string>() { "github", "bitbucket" }) |
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
public async Task<SearchResult> SearchAsync(SearchQuery query) | |
{ | |
string baseUrl = "https://api.bitbucket.org/2.0/teams/%7B6f461d1e-a3dd-433b-a0e3-7a69daf6ea47%7D/search/code?search_query="+ | |
HttpUtility.UrlEncode(query.Text); | |
SearchResult result = new SearchResult(); | |
using (HttpClient client = new HttpClient()) | |
{ | |
client.DefaultRequestHeaders.Add("User-Agent", "nest-don"); |
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
public byte[] GetRequest(byte[] data) | |
{ | |
SearchQuery query = _repo.GetQuery(Encoding.UTF8.GetString(data)); | |
List<SearchResult> cachedResults = null; | |
if (query != null && (DateTime.Now - query.Created).TotalSeconds < TTL) | |
{ | |
// If its a previous non-stale query then use the | |
// results stored in the cache | |
cachedResults = _repo. |
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 |
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
class Cache | |
{ | |
public static void Main() | |
{ | |
Runtime runtime = new Runtime( | |
QueueMode.Server | QueueMode.Client); | |
QueryRepository repo = new QueryRepository( | |
QueryContextFactory.Create(runtime)); |
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
public SearchController( | |
ILogger<SearchController> logger, | |
Runtime runtime | |
) | |
{ | |
_logger = logger; | |
_runtime = runtime; | |
_cache = _runtime.QueueClient.CreateRPCEndpoint( | |
_runtime.GetNest("cache")); |
NewerOlder