views:

31

answers:

2

I am implementing a dynamic application for 4 desktops in my house so i don't think that security is big issue however i would like to know what is the most efficient wayto implement sessions?cookies ?store it in the database or in the memory? thank you

+2  A: 

For the use-case you describe I see no reason not to use the Rails' default of cookie-based session storage.

John Topley
+1  A: 

Security is no issue...then cookies should be the best.

Suman Mukherjee