■ ParallelEnumerable 클래스의 AsParallel<TSource> 확장 메소드를 사용하는 방법을 보여준다.
▶ 예제 코드 (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 |
using System; using System.Collections.Generic; using System.Linq; /// <summary> /// 학생 /// </summary> public class Student { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 성명 - Name /// <summary> /// 성명 /// </summary> public string Name { get; set; } #endregion #region 연령 - Age /// <summary> /// 연령 /// </summary> public int Age { get; set; } #endregion } ... Random random = new Random(); List<Student> studentList = new List<Student>(); for(int i = 0; i < 1000000; i++) { Student student = new Student(); student.Name = string.Format("성명 {0}", i +1); student.Age = random.Next(0, 100); studentList.Add(student); } var result = from student in studentList.AsParallel() where student.Age > 50 orderby student.Age ascending select student; |
※ AsParallel 메소드 추가만으로 PLINQ가 적용된다.
※ 단순 계산의 경우 병렬 처리 오버헤드 증가로 처리 속도가 증가할 수 있다.