up vote 4 down vote favorite
share [g+] share [fb]

I'm writing into a session cookie from my plugin in chrome. The browser seems to have a strict limit of 4kb for cookie size. It doesnt seem the case in firefox. Is there anyway i can increase the cookie size limit in chrome?

Thanks

link|improve this question

44% accept rate
1  
Why do you need to store so much in a cookie? – CResults Mar 30 '10 at 8:46
feedback

2 Answers

up vote 3 down vote accepted

Chrome supports HTML5 localStorage that allows you to use a dictionary style look up. You can use this to store larger amounts of data instead of passing them back and forth using cookies.

link|improve this answer
feedback

You can't change the cookie size but you can use several cookies and span your data across them, keeping one cookie as a pointer to other cookies so you know what they're called, how many there are, etc (like a partition table on a harddisk).

But perhaps you're approaching this the wrong way. If you need to do something like this, you're probably better off storing the data online as it has a better chance of survival and if you tie it in with some user registration, it's portable too.

There are other options like Mozilla Weave and Google Gears, but Gears was recently announced to be discontinued.

link|improve this answer
A nice reply, But he should rather stick to Local Storage as it is the standard and also becoming main stream for such tasks :) – BlackDivine Nov 9 '11 at 8:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.