«concurrent-collections» 태그된 질문

4
ConcurrentDictionary AddOrUpdate에서 업데이트 부분에 추가 할 항목
ConcurrentDictionary를 사용하기 위해 Dictionary를 사용하여 일부 코드를 다시 작성하려고합니다. 몇 가지 예를 검토했지만 여전히 AddOrUpdate 기능을 구현하는 데 문제가 있습니다. 이것은 원래 코드입니다. dynamic a = HttpContext; Dictionary<int, string> userDic = this.HttpContext.Application["UserSessionList"] as Dictionary<int, String>; if (userDic != null) { if (useDic.ContainsKey(authUser.UserId)) { userDic.Remove(authUser.UserId); } } else { userDic = …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.