• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Throttling data miners(leechers)

 
Rancher
Posts: 2759
32
Eclipse IDE Spring Tomcat Server
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
So, we have this yellow pages search website, that is basically open access. There is no login/password security, and we don;t want to force our users to register on the site to use it. Basically, any person that needs information should be able to go in and find a business

What we don't want is automated scripts trawling our website and leeching data out of it. Granted, we can't stop everyone, but we want to place limits on how many requests users can place on the website. So, even if a leecher wants to extract data out of us, the leecher should be well behaved and not overwhelm the system with requests

So, my question is can I use apache to throttle the number of requests from the same IP address? I know I can do it in my servlet, but I would rather do it before the request comes to the servlet. I know I can use apache to block IP addresses all together, but is throttling possible?
 
reply
    Bookmark Topic Watch Topic
  • New Topic