I just don't understand why.
As I assume, cookies lives only during request handling (from parsing http headers until finishing sending http body). Why CookieJar uses 'static attribute on definitely non-static data?
The other questions: Does it leak memory by making non-static data static? How it is making cookie data static?
The method that I am talking about is here.
I just don't understand why.
As I assume, cookies lives only during request handling (from parsing http headers until finishing sending http body). Why CookieJar uses
'staticattribute on definitely non-static data?The other questions: Does it leak memory by making non-static data static? How it is making cookie data static?
The method that I am talking about is here.