■ ValueTask<T> 클래스를 사용하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
using System; using System.Collections.Generic; using System.Threading.Tasks; /// <summary> /// 캐시 헬퍼 /// </summary> public class CacheHelper { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 딕셔너리 /// </summary> private Dictionary<int, int> dictionary; /// <summary> /// 난수기 /// </summary> private Random random; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - CacheHelper() /// <summary> /// 생성자 /// </summary> public CacheHelper() { this.dictionary = new Dictionary<int, int>(); this.random = new Random(DateTime.Now.Millisecond); } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Public #region 값 구하기 (비동기) - GetValueAsync(index) /// <summary> /// 값 구하기 (비동기) /// </summary> /// <param name="index">인덱스</param> /// <returns>값 태스크</returns> public async ValueTask<int> GetValueAsync(int index) { if(this.dictionary.ContainsKey(index)) { return this.dictionary[index]; } else { int value = await FetchValueAsync(index); this.dictionary.Add(index, value); return value; } } #endregion ////////////////////////////////////////////////////////////////////////////////////////// Private #region 값 꺼내기 (비동기) - FetchValueAsync(index) /// <summary> /// 값 꺼내기 (비동기) /// </summary> /// <param name="index">인덱스</param> /// <returns>값 태스크</returns> private async Task<int> FetchValueAsync(int index) { return await Task<int>.Run ( () => { int value = this.random.Next(1000); return value; } ); } #endregion } |
※ 누겟 설치 : System.Threading.Tasks.Extensions