Skip to content

Instantly share code, notes, and snippets.

[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" })
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");
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.
// GET api/search
[HttpGet("{text}")]
public IActionResult Get(string text)
{
try
{
_logger.LogInformation("Query for {0} arrived", text);
// Search the cache for query
class Cache
{
public static void Main()
{
Runtime runtime = new Runtime(
QueueMode.Server | QueueMode.Client);
QueryRepository repo = new QueryRepository(
QueryContextFactory.Create(runtime));
public SearchController(
ILogger<SearchController> logger,
Runtime runtime
)
{
_logger = logger;
_runtime = runtime;
_cache = _runtime.QueueClient.CreateRPCEndpoint(
_runtime.GetNest("cache"));