I have a site where people can vote on items. For the time being, because of storage concerns, I would like not to store the votes people make in the database. Instead, I was considering some other medium, and the two items that came to mind are cookies and HTML 5 local strorage. I was thinking I could use local storage to store the items voted on, and restrict future voting.
For more information, I would like the user to only vote once, but I'm OK if the user is blocked for a week or two only, and can revote again, so I don't necessarily feel I need a long term storage solution like a database, just something locally on the local machine to make it easier for me not to have to worry about it...
Any thoughts?
Thanks.