ContentHolmes / Content-Holmes

Content Holmes is a one-click AI-based online parenting solution that helps you to keep your children secure from cyber-bullying and adult content online and monitor their activities.
https://www.contentholmes.com
GNU Affero General Public License v3.0
6 stars 4 forks source link

Global URL Hashtable on the server #51

Closed rajatjain1997 closed 7 years ago

rajatjain1997 commented 7 years ago

A global hashtable for bad urls needs to be on the server. This is entirely optional for now, but this will help us reduce our image check calls. We can put it through a bloom filter in the sense that if the URL might be on the server, we send a request out to check it, otherwise it is not on the server as there are no false negatives.

Mrigesh08 commented 7 years ago

I am maintaining a json object of all the bad urls communicated by the extension. We can convert it into a hash table but that would be overkill. So let it be this way as of now.