I'm new to Ruby on Rails but it seems it creates a new session every time a new user visits the website. The problem is, creating a session involves placing a cookie on the user's browser and the problem with that is that cookies are illegal in Europe!!!
An exceptionally technologically-ignorant directive holds the user must give his prior consent for any cookie being placed on their computer, and, if Ruby on Rails sets a cookie immediately, I've got no chance for getting the consent. Immediately on the first visit to my application, the cookie probably does not serve any purpose from the website's functionality point of view, so the excuse of "implied consent" would also be invalid in court.
So, is it possible to configure a RoR application so that it does not create sessions automatically?