Hello,
been pulling my hair out over this for the past few hours.
i have a cache object..
HttpRuntime.Cache.Insert("Members", AllMembersList, null, DateTime.Now.AddHours(1), TimeSpan.Zero);
when i try and clear the cache object..
HttpRuntime.Cache.Remove("Members");
its value doesnt change, untill 1 hour is up or when i reset the server.
My question.. for a cache object that is set absolute expiration, can i manually clear it or will it exist for the full hour ?
what i would like is this object to last for an hour but depending on program execution be able to clear it so it will contain fresh data.
any help is most appreciated
truegilly