Issue 2906: Cookies expiring prematurely http://code.google.com/p/chromium/issues/detail?id=2906
Comment #15 by [EMAIL PROTECTED]: Bummer. I am not sure what could be happening. One thing that would be helpful to know is how many cookies people have when they are losing cookies. From the cookie code: static const size_t kNumCookiesPerHost = 70; // ~50 cookies static const size_t kNumCookiesPerHostPurge = 20; static const size_t kNumCookiesTotal = 1100; // ~1000 cookies static const size_t kNumCookiesTotalPurge = 100; This means after you have 70 cookies on a single host, we will drop 20, after you have 1100 total, we will drop 100. I am wondering maybe people have > 1000 cookies, and the cookie garbage collector is throwing away the cookie? It sounds doubtful, but I figured it was worth mentioning. I will have to create a cookie debug build, and add some UMA stats, etc, to get an idea of what the problem could be... It seems like this really depends on usage, we have had a enough people complain that I believe it's a real bug, but it doesn't seem to be very widespread. The original bug was about tvguide, I set my zip cookie when it was reported, and I still have it. I haven't reproduced any cookie dropping here... -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Chromium-bugs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/chromium-bugs?hl=en -~----------~----~----~----~------~----~------~--~---
