foreach


    728x90
    반응형

    [Java] 대용량 Insert 처리 방법의 속도 비교 (다중 Insert)

    Service 로직에서 for문을 통해 insert하는 방법 1. 랜덤한 자료 10,000건 생성 // 랜덤으로 10000건의 데이터 생성 int count = 0; List list = new ArrayList(); while(true) { count++; String title = RandomStringUtils.randomAlphabetic(10); String contents = RandomStringUtils.randomAlphabetic(10); list.add(new Board(title, contents)); if(count >= 10000) { break; } } * RandomStringUtils: commons-lang3 라이브러리 등록 2. Service 로직 (for문) for(B..

728x90
반응형