Search Results

-1
votes

In Rails, with cookie-based session store, are session and cookies the same thing

You shouldn't store anything you don't want the user to see or change in cookie. If you store a member ID then the user could easily change the value and pretend to be someone else. Cookies are als …