asp.net mvc 4 - Session Cookies on IIS Web Farms -


i using jquery plug-in create cookie (https://github.com/carhartl/jquery-cookie) , have been allowing cookie default "session cookie". behavior have. concern when deploy web site production, in web farm on environment. can me understand kind of issues, if any, run session cookies on web farm? version of iis on web farm iis 7.5.

no issues @ all. cookies stored on client. don't know or care server side infrastructure , how many nodes have.

there 2 types of cookies:

  1. session cookies - live in memory of webbrowser , not survive browser restart.
  2. persistent cookies - stored files on file system specified duration , survive browser restarts.

from perspective of server makes strictly no difference. cookie sent client on each request , node serving request receive cookie.

if on other hand storing information in memory of web server, such example using asp.net session default inproc state have problems. has nothing client side cookies.


Comments

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -