1. 01 Nov, 2015 11 commits
  2. 31 Oct, 2015 12 commits
  3. 30 Oct, 2015 4 commits
  4. 28 Oct, 2015 11 commits
  5. 27 Oct, 2015 2 commits
    • Muhammed Yavuz Nuzumlali's avatar
      Move update logic to source.rb · 75ecb8fe
      Muhammed Yavuz Nuzumlali authored
      75ecb8fe
    • Muhammed Yavuz Nuzumlali's avatar
      Changes search index format to fasten `pod search --full` command. · 9952a849
      Muhammed Yavuz Nuzumlali authored
      - Previous implementation was having the drawback of traversing and performing `gsub` on all index strings for each pod specification.
      - New implementation stores words as keys and list of pods containing corresponding word inside their specification as the values for corresponding hash keys. Therefore, while searching for a query, we only need to check if query is matched with any key in index hash, if so, we will add corresponding list of spec names to a Set object. Resulted Set object gives us the search result. Using this policy, sources manager can perform a faster search operation.
      9952a849