What's a fast "if user A and user B like product C, they might be interested to follow each other" algorithm. I don't think that calculating their similarity at runtime is smart enough, because it will slow down the response. On the other hand, computing an overnight index will require making an (N*N-1) different runs, where N is the number of users ... not very clever, too. Plus, every time a user likes a new product, or a new user registers, indexes have to be recomputed.

What's the smartest thing which could be applied here? Some sort of ultrafast hashing, to which then only the new items are added?

link|improve this question

37% accept rate
feedback

3 Answers

up vote 0 down vote accepted

Well among the algorithms that I studied in a course in Uni, there was one dealing with things like this. Their recommended approach was to compute a "similarity" index for each pair of users (which I guess is your N*N method mentioned) and then based on this determine to which users a particular user is closest to.

Of course, you are not required to immediately recalculate the similarity indexes for every change, just once in a while, somewhat like a search engine crawler works. In fact, once you have computed the initial index, you can use various heuristic methods to recompute more often for users who change their preferences fast, and much slower for those who only change them rarely.

link|improve this answer
feedback

Have a precomputed matrix of size N * N for users.

Create a set of changes, initialize it to be empty.
Every time a user is changing his liked items [adding/removing an item], add it to the set.

Offline [overnight], iterate this changes set, and modify the matrix accordingly. Don't forget to empty the set after you are done.

With this approach - seek time is fairly quick, since no need for calculating anything - just access the matrix. You also avoid N*(N-1) calculations in the average case. You only need to calculate N*k entries, where k is the number of users who actually modified their wish list.

link|improve this answer
feedback

Have you thought about an RDF database? Like OWLIM http://www.ontotext.com/owlim

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.