-1

similar to http://myrrix.com/rest-api/#mostpopularitems, how do i get users with most user-item preferences?

ulkas
  • 5,748
  • 5
  • 33
  • 47

1 Answers1

2

You would have to flip your model from user,item to item,user and then call the mostpopularitems method.

Julian Ortega
  • 947
  • 4
  • 11
  • isn't there any other option? – ulkas Jun 07 '13 at 13:34
  • 2
    That's right, the model is asymmetric by design really. The assumption is that users and items are different, and that you do different things with them. Users with the most ratings isn't a common thing to query. – Sean Owen Jun 07 '13 at 14:17