speed 9

텍스트 치환 함수 속도 String Replacement Method Speed

String Replacement Methods sprintf preg_replace strtr str_replace Result sprintf > str_replace > preg_replace > strtr strtr 과 str_replace 간 특성차이를 고려. Run Speed 거론된 결과물이 많지만 1,2 만... str_replace #1 1.33 : 1 sprintf str_replace #2 1.6 : 1 sprintf preg_replace 2.19 : 1 sprintf strtr 51.97 : 1 sprintf sprintf: 2.92035603523 seconds preg_replace: 5.3017771244 seconds str_replace #1: 7.66827106476 sec..

lang/php 2018.04.26

이클립스 성능 최적화

2013/08/09 - [Util/Eclipse] - 이클립스 INI 환경설정2014/11/03 - [Util/Eclipse] - eclipse word-wrap2010/11/03 - [Util/Eclipse] - eclipse "java heap space"2006/10/10 - [Util/Eclipse] - Eclipse 플러그인 사이트Eclipse 성능개선 최적화 이클립스 최적화 및 튜닝 Eclipse Config 설정 및 성능 최적화 -showlocation ; workspace 경로를 타이틀바에 출력 -Xverify:none ; 유효성검사 생략 -XX:+UseParallelGC ; 병렬처리 -XX:+AggressiveOpts ; 컴파일러 소수점 최적화 기능 활성화 -XX:-UseConcMarkS..

ide/eclipse 2015.11.02

10 Javascript Performance Boosting Tips from Nicholas Zakas

원문 : 10 Javascript Performance Boosting Tips from Nicholas Zakas Define local variables 지역변수를 사용하라 Don’t use the with() statement with() 문법을 사용하지 마라 Use closures sparingly closures 를 절약하라 Object properties and array items are slower than variables 개체 속성과 배열 항목은 변수보다 느리다. Don’t dig too deep into arrays 배열은 깊게 파지마라 Avoid for-in loops (and function based iteration) for-in 루프는 피하라. ( function 기반 반복은..

lang/js 2013.03.12
반응형