2018/04 8

텍스트 치환 함수 속도 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

Access denied; SUPER privilege(s) for this operation

Access denied; you need (at least one of) the SUPER privilege(s) for this operation How to grant super privilege to the user? gunzip < back.20180423.data.gz | mysql -uusername -p -f datbasename Enter Password: ERROR 1227 (42000) at line 279: Access denied; you need (at least one of) the SUPER privilege(s) for this operation failure cause 원인 파악? working server에서 mysqldump를 이용 원격지 db 백업 원격백업이 가능하기..

db/mysql 2018.04.23

php log file write speed

Performance of non-blocking writes to files via PHP What is Apache log4php? - Apache log4php $fp = fopen($file, 'a+'); while($count > $loop) { fwrite($fp, $text); } fclose($fp); ... ... ... 전체 요청이 진행되는 동안 파일을 열어두고 다음 로그 이벤트가 발생할 때 flock으로 풀고 다시 묶는다. $fp = fopen($file, 'a+'); flock($fp, LOCK_UN); while($count > $loop) { if (flock($fp, LOCK_EX)) { fwrite($fp, $text); } flock($fp, LOCK_UN); } fclos..

lang/php 2018.04.20

Linux/Ubuntu Destkop Menu

리눅스의 시작 프로그램 개념 정리 시작프로그램 설정 - 우분투 한국 커뮤니티 포럼 우분투 리눅스에서 직접 시작메뉴에 프로그램 추가하기 How to Change An Application Icon in Ubuntu Unity [Tips] 어플리케이션 프로그램 위치 : /usr/share/applications 로컬 여플리케이션 프로그램 위치 : .local/share/applications Android Studio [Desktop Entry] Type=Application Name=Android Studio Exec=/opt/android-studio/bin/studio.sh Icon=/opt/android-studoi/bin/studio.png Categories=Application;

os/Ubuntu 2018.04.05

Access denied; you need (at least one of) the SUPER privilege(s) for this operation

Access denied; SUPER privilege(s) for this operation Access denied; you need (at least one of) the SUPER privilege(s) for this operation First attempt to migrate EC2 MySQL to Amazon RDS no going well - SUPER privileges 방금 aws MySQL rds 인스턴스를 만들고 나서, 로컬에 있는 DB… #1227 - Access denied; you need the SUPER privilege for this operation RDS 인스턴스를 생성시 Master Username 을 개별 사용자(root 가 아닌)로 생성하면 백업파일중 SET ..

db/mysql 2018.04.02
반응형