How to create an advertising system from scratch?

I am going to make an ad system from scratch and put it in my Ruby on Rails web application. What books do you recommend and topics (Algorithms, SQL?), Should I study for this to happen, where do you start?

I want the system to accept User data and when it advertises a business, Users will receive recommended ads based on their likes, dislikes and other data. Advertising will take place only in my web application and on my website. I think I want to do something similar to the Facebook Ad System (images) and Google Ad Words, how did they do it?

Thanks.

PS I have little experience with Rails, Ruby, Computer Science and programming in general, but I quickly learn and easily create an application.

+4
source share
2 answers

Ilya Grigorik made a wonderful recording with a lot of code examples on this topic. See http://www.igvita.com/2007/01/15/svd-recommendation-system-in-ruby/

If you mean books on Ruby and Rails, I can recommend:

Ruby Programming (AKA "The Pickaxe")

Agile Web Development with Rails

These were the starting points of my Ruby career.

+3
source
+2
source

Source: https://habr.com/ru/post/1342501/


All Articles