This file contains hidden or 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
```coffeescript | |
class Recommender | |
getRecommendations: (search_params, cb) -> | |
# Do 2 things at once: | |
# - check if we have a logged in user, get their info | |
# - fire off distributed requests for search queries | |
# ------------------------------------------------------------------------ |