According to documentation, a session is initiated automatically when a visit object is created, can a session be started without creating a visit object?
To improve performance, I have decided to create a visit object and hence a session only when a client is about to log in, anonymous clients are don't need to be in a session, there is no need to remember what the have done. if an authenticated client decides to log out, the session should be destroyed and it should not be browsing the application without a session. the question is, how do I destroy a session such that the client can continue to access the application without tapestry recording any session?
