Re: Is IP address caching built into the Django Framework?

2009-07-01 Thread links_awakening
Thanks for sharing this knowledge. It sounds like my best option would be to cache IP addresses and use some sort of heuristics to detect odd voting patterns. On Jun 29, 7:26 am, James wrote: > On Jun 29, 8:13 am, Vladimir Shulyak wrote: > > > > You can't rely on just theIP. If you do then you

Re: Is IP address caching built into the Django Framework?

2009-06-28 Thread links_awakening
your production server) so you can store it > against voting id with datetime field. > > On Jun 28, 1:23 am, links_awakening wrote: > > > If users can click "vote up" on my site, I want to prevent them from > > clicking "vote up" multiple times.  T

Is IP address caching built into the Django Framework?

2009-06-27 Thread links_awakening
If users can click "vote up" on my site, I want to prevent them from clicking "vote up" multiple times. To do this, I would check whether their IP has clicked "vote up" in the past 24 hours. Thus, I am curious whether Django helps with this sort of problem, or if anyone has solved this using Dja