iwinv 에서 블록스토리지에 zfs 파일시스템 구성
개요
- 국내에서 제법 저렴한 호스팅 서비스인 iwinv에서 제공하는 서비스 활용법중에 하나...
- 기본적으로 iwinv 에서 제공하는 blockstorage를 이용하여 zfs 파일 시스템을 생성할수 있다. 기본 가이드는 lvm을 이용하는것으로 가이드 하지만 zfs도 생성 가능
- cpu를 조금 더 사용하여 파일시스템 사용 효율을 극대화 할수 있다.
zfs활용예시 - 설치는 openzfs 가 아닌 apt로 간단히 설치
기본으로 vm-lite (ubuntu 20버전) 과 blockstorage(예제로50GB) 생성
기본 파일시스템 확인
root@helloworld-139867:~# df -Th
Filesystem Type Size Used Avail Use% Mounted on
udev devtmpfs 223M 0 223M 0% /dev
tmpfs tmpfs 48M 992K 47M 3% /run
/dev/vda1 ext4 25G 2.0G 23G 8% /
tmpfs tmpfs 239M 0 239M 0% /dev/shm
tmpfs tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs tmpfs 239M 0 239M 0% /sys/fs/cgroup
/dev/vda15 vfat 105M 6.6M 98M 7% /boot/efi
/dev/loop0 squashfs 55M 55M 0 100% /snap/core18/1705
/dev/loop1 squashfs 69M 69M 0 100% /snap/lxd/14804
/dev/loop2 squashfs 28M 28M 0 100% /snap/snapd/7264
/dev/loop3 squashfs 33M 33M 0 100% /snap/snapd/12704
/dev/loop4 squashfs 56M 56M 0 100% /snap/core18/2074
tmpfs tmpfs 48M 0 48M 0% /run/user/0
/dev/loop5 squashfs 62M 62M 0 100% /snap/core20/1081
/dev/loop6 squashfs 69M 69M 0 100% /snap/lxd/21260
vm접속후 확인
root@helloworld-139867:~# fdisk -l
...
...
...
Device Start End Sectors Size Type
/dev/vda1 227328 52428766 52201439 24.9G Linux filesystem
/dev/vda14 2048 10239 8192 4M BIOS boot
/dev/vda15 10240 227327 217088 106M EFI System
Partition table entries are not in disk order.
Disk /dev/vdb: 50 GiB, 53687091200 bytes, 104857600 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
zfs 패키지 설치
root@helloworld-139867:~# apt install zfsutils-linux
...
...
...
설치확인
root@helloworld-139867:~# which zfs
/usr/sbin/zfs
root@helloworld-139867:~# whereis zfs
zfs: /usr/sbin/zfs /etc/zfs /usr/share/man/man8/zfs.8.gz
blockstorage를 pool로 생성
root@helloworld-139867:~# lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
loop0 7:0 0 55M 1 loop /snap/core18/1705
loop1 7:1 0 69M 1 loop /snap/lxd/14804
loop2 7:2 0 27.1M 1 loop /snap/snapd/7264
loop3 7:3 0 32.3M 1 loop /snap/snapd/12704
loop4 7:4 0 55.5M 1 loop /snap/core18/2074
loop5 7:5 0 61.8M 1 loop /snap/core20/1081
loop6 7:6 0 68.3M 1 loop /snap/lxd/21260
vda 252:0 0 25G 0 disk
vda1 252:1 0 24.9G 0 part /
vda14 252:14 0 4M 0 part
vda15 252:15 0 106M 0 part /boot/efi
vdb 252:16 0 50G 0 disk
-- ( vdb 가 block storage disk )
-- 생성
root@helloworld-139867:~# zpool create zfspool vdb
zfs pool 생성 확인
root@helloworld-139867:~# zpool list
NAME SIZE ALLOC FREE CKPOINT EXPANDSZ FRAG CAP DEDUP HEALTH ALTROOT
zfspool 49.5G 110K 49.5G - - 0% 0% 1.00x ONLINE -
생성된 pool 에 기본적으로 압축 설정
root@helloworld-139867:~# zfs get compression
zfspool compression off local
root@helloworld-139867:~# zfs set compression=lz4 zfspool
root@helloworld-139867:~# zfs get compression
NAME PROPERTY VALUE SOURCE
zfspool compression lz4 local
pool로 부터 파일시스템 생성
root@helloworld-139867:~# zfs create -o mountpoint=/data01 -o compression=lz4 zfspool/data01
root@helloworld-139867:~# df -Th
Filesystem Type Size Used Avail Use% Mounted on
udev devtmpfs 223M 0 223M 0% /dev
tmpfs tmpfs 48M 1004K 47M 3% /run
/dev/vda1 ext4 25G 2.0G 23G 8% /
tmpfs tmpfs 239M 0 239M 0% /dev/shm
tmpfs tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs tmpfs 239M 0 239M 0% /sys/fs/cgroup
/dev/vda15 vfat 105M 6.6M 98M 7% /boot/efi
/dev/loop0 squashfs 55M 55M 0 100% /snap/core18/1705
/dev/loop1 squashfs 69M 69M 0 100% /snap/lxd/14804
/dev/loop2 squashfs 28M 28M 0 100% /snap/snapd/7264
/dev/loop3 squashfs 33M 33M 0 100% /snap/snapd/12704
/dev/loop4 squashfs 56M 56M 0 100% /snap/core18/2074
tmpfs tmpfs 48M 0 48M 0% /run/user/0
/dev/loop5 squashfs 62M 62M 0 100% /snap/core20/1081
/dev/loop6 squashfs 69M 69M 0 100% /snap/lxd/21260
zfspool zfs 48G 128K 48G 1% /zfspool
zfspool/data01 zfs 48G 128K 48G 1% /data01
- /data01 파일시스템이 zfs로 생성된것 확인
압축 테스트
- 50G 스토리지,파일시스템에 100G Dummy파일 생성 테스트
cd /data01
root@helloworld-139867:/data01# dd if=/dev/zero of=./100Gfile bs=1 count=0 seek=100G
0+0 records in
0+0 records out
0 bytes copied, 0.00013683 s, 0.0 kB/s
root@helloworld-139867:/data01# ls -alrth
total 5.0K
drwxr-xr-x 21 root root 4.0K Aug 10 15:07 ..
-rw-r--r-- 1 root root 100G Aug 10 15:19 100Gfile
drwxr-xr-x 2 root root 3 Aug 10 15:19 .
root@helloworld-139867:/data01# df -Th
Filesystem Type Size Used Avail Use% Mounted on
....
zfspool/data01 zfs 48G 128K 48G 1% /data01
'Computer_IT > OS' 카테고리의 다른 글
Windows 7 end of life support ( Windows 7 PC는 지원되지 않습니다. (0) | 2020.02.05 |
---|---|
Windows 2008 Server 원격접속 제한 해제, Multiple RDP Sessions (0) | 2013.04.23 |
AIX에 wget (toolbox) 그냥 설치... (0) | 2011.03.23 |
매킨토시에서 한영전환 (0) | 2010.02.28 |
VI ^M문자 (개행문자) 제거 (0) | 2009.09.24 |
비즈니스 원드라이브 - 네트워크 드라이브 연결 오류
모 커뮤니티 사이트에서 원드라이브를 네트워크드라이브 연결하는 방법을 확인하여 시도하였으나 아래와 같은 오류가 발생
인터넷 속성 : https://*.sharepoint.com 추가
네트워크 드라이브 연결
https://아이디아이디.sharepoint.com/personal/서브아이디/_layouts/15/onedrive.aspx 를 https://아이디아이디.sharepoint.com/personal/서브디아이디/Documents 로 변경하여 아래 네트워크 드라이브 연결 |
Chrome과 Edge에서 수행시 아래 오류 발생
다음 오류가 발생하여 네트워크 드라이브를 연결할 수 없습니다. 액세스가 거부되었습니다. 이 위치에서 파일을 열기 전에 먼저 웹 사이트를 신뢰할 수 있는 사이트 목록에 추가하고 해당 웹 사이트를 찾은 후 자동으로 로그인하도록 옵션을 선택해야 합니다. |
위 에러 발생시 Chrome / Edge 등에서 로그인을 시도해도 접속이 안되며
해결 방법은 Internet Explorer 11을 이용하여 로그인을 해야 접속됨
참고 URL
blog.naver.com/purple_linea/221789131358
www.clien.net/service/board/lecture/15841015
'Computer_IT > 오류메세지' 카테고리의 다른 글
Jeus Postgresql datasource logintimeout 오류 (3) | 2018.04.08 |
---|---|
ConflictingBeanDefinitionException (0) | 2017.07.21 |
• Windows 10 x64 기반 시스템용 Internet Explorer Flash Player 보안 업데이트(KB3087040) - 오류 0x80004005 (0) | 2015.09.22 |
Cannot find 'XINPUT1_3.dll', Please, re-install this application (0) | 2014.05.11 |
에버노트 설치/업그레이드 안되는 현상 (0) | 2013.04.02 |
[Tomcat] Windows에서 콘솔 화면 한글 깨짐 조치
증상
- Windows 명령창에서 Tomcat 구동시 한글이 모두 깨짐
원인
- 명령 프롬프트 창과 tomcat logging 기본 인코딩(UTF-8)이 틀려서 발생
조치방법
- 레지스트리를 편집하여 "명령 프롬프트" 인코딩 변경
- tomcat에서 남기는 로그 인코딩 변경 ( tomcat9 버전 기준 )
1catalina.org.apache.juli.AsyncFileHandler.encoding = UTF-8
2localhost.org.apache.juli.AsyncFileHandler.encoding = UTF-8
3manager.org.apache.juli.AsyncFileHandler.encoding = UTF-8
4host-manager.org.apache.juli.AsyncFileHandler.encoding = UTF-8
java.util.logging.ConsoleHandler.encoding = UTF-8
UTF-8 부분 모두 EUC-KR로 변경후 저장
결과
'Computer_IT > JAVA' 카테고리의 다른 글
[MAVEN] unmappable character for encoding EUC_KR (0) | 2018.08.23 |
---|---|
[spring] logback 로그 2번 찍힘 (0) | 2018.08.09 |
Java Bitmap pixel to image(png) setRGB example (0) | 2015.06.17 |
JDK 7 release - Bug Fixes history (0) | 2014.10.20 |
eclipse @author 변경하기 (0) | 2013.07.02 |
Windows 7 end of life support ( Windows 7 PC는 지원되지 않습니다.
Windows 7 부팅시 안내 화면
'Computer_IT > OS' 카테고리의 다른 글
iwinv 에서 블록스토리지에 zfs 파일시스템 구성 (0) | 2021.08.10 |
---|---|
Windows 2008 Server 원격접속 제한 해제, Multiple RDP Sessions (0) | 2013.04.23 |
AIX에 wget (toolbox) 그냥 설치... (0) | 2011.03.23 |
매킨토시에서 한영전환 (0) | 2010.02.28 |
VI ^M문자 (개행문자) 제거 (0) | 2009.09.24 |
[PostgreSQL] PostgreSQL Disadvantages - 단점/불편한점
컬럼 사이즈 변경시 주의점
컬럼 사이즈를 변경할때 관련된 view가 있으면 view를 drop 후에 새로 생성해야 함.
view개수가 많을수록 번거러움은 커진다.
- drop view ...
- alter table ... alter column ...
- create view
파일 시스템 Full
데이터가 적재되는 파일 시스템이 100% 도달해버리면 PostgreSQL 프로세스가 내려간다. (종료됨)
vacuum 관리
vacuum이 불이의 이유로 수행이 안될경우 db자체가 정지하며 재생성 작업을 해주어야 한다.
'Computer_IT > DBMS' 카테고리의 다른 글
[PostgreSQL] Function 내용 수정 (0) | 2019.05.17 |
---|---|
Oracle 테이블에서 날짜형식의 테이블만 추출하는 정규표현식 (0) | 2018.08.08 |
Oracle] Table and Column Comments extract query (0) | 2018.08.08 |
사용하기 쉬운 쿼리툴 _ DbVisualizer 장단점 (0) | 2015.06.17 |
h2 database utc time select (0) | 2013.05.21 |
[PostgreSQL] Function 내용 수정
테스트 버전
PostgreSQL 10 / 11
Function 파일로 추출
형식 : psql 접속정보 -c "\sf 함수명" > function_name.sql
예제명령 : psql -h 127.0.0.1 -p 1234 - U userid -d db_name > function_name.sql
Function 수정
vi function_name.sql
Function 적용
예제명령 : psql -h 127.0.0.1 -p 1234 - U hello -d db_name < function_name.sql
'Computer_IT > DBMS' 카테고리의 다른 글
[PostgreSQL] PostgreSQL Disadvantages - 단점/불편한점 (0) | 2019.05.20 |
---|---|
Oracle 테이블에서 날짜형식의 테이블만 추출하는 정규표현식 (0) | 2018.08.08 |
Oracle] Table and Column Comments extract query (0) | 2018.08.08 |
사용하기 쉬운 쿼리툴 _ DbVisualizer 장단점 (0) | 2015.06.17 |
h2 database utc time select (0) | 2013.05.21 |
[MAVEN] unmappable character for encoding EUC_KR
오류 메시지
unmappable character for encoding EUC_KR
해결
pom.xml 에 다음 속성 추가
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding>
'Computer_IT > JAVA' 카테고리의 다른 글
[Tomcat] Windows에서 콘솔 화면 한글 깨짐 조치 (0) | 2020.10.15 |
---|---|
[spring] logback 로그 2번 찍힘 (0) | 2018.08.09 |
Java Bitmap pixel to image(png) setRGB example (0) | 2015.06.17 |
JDK 7 release - Bug Fixes history (0) | 2014.10.20 |
eclipse @author 변경하기 (0) | 2013.07.02 |
[spring] logback 로그 2번 찍힘
현상
logback 출력시 계속 로그가 2줄씩 출력이 되는 경우가 발생
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:mvc="http://www.springframework.org/schema/mvc"
-- 생략...
<mvc:annotation-driven/>
-- 생략
</beans>
해결
annotation-driven이 2번 선언 되어있을 경우 로그가 2번 출력되는 경우가 있음 / 1개만 존재하도록 변경
변경전
변경후
'Computer_IT > JAVA' 카테고리의 다른 글
[Tomcat] Windows에서 콘솔 화면 한글 깨짐 조치 (0) | 2020.10.15 |
---|---|
[MAVEN] unmappable character for encoding EUC_KR (0) | 2018.08.23 |
Java Bitmap pixel to image(png) setRGB example (0) | 2015.06.17 |
JDK 7 release - Bug Fixes history (0) | 2014.10.20 |
eclipse @author 변경하기 (0) | 2013.07.02 |
Oracle 테이블에서 날짜형식의 테이블만 추출하는 정규표현식
DB의 테이블명이 DATA_20180801 형태로 되어있을경우 날짜가 포함된 테이블만 조회하는 정규식
SELECT * FROM (
SELECT TABLE_NAME, REGEXP_SUBSTR( TABLE_NAME, '\d{4}\d{2}\d{2}') YYYYMMDD
FROM USER_TABLES
)
WHERE YYYYMMDD IS NOT NULL
-- AND YYYYMMDD < '20180701'
결과
'Computer_IT > DBMS' 카테고리의 다른 글
[PostgreSQL] PostgreSQL Disadvantages - 단점/불편한점 (0) | 2019.05.20 |
---|---|
[PostgreSQL] Function 내용 수정 (0) | 2019.05.17 |
Oracle] Table and Column Comments extract query (0) | 2018.08.08 |
사용하기 쉬운 쿼리툴 _ DbVisualizer 장단점 (0) | 2015.06.17 |
h2 database utc time select (0) | 2013.05.21 |
Oracle] Table and Column Comments extract query
-- 테이블 COMMENT 조회
SELECT TABLE_NAME, TABLE_TYPE, COMMENTS
FROM USER_TAB_COMMENTS
WHERE COMMENTS IS NOT NULL;
-- 컬럼별 COMMENT 조회
SELECT *
FROM USER_COL_COMMENTS
WHERE COMMENTS IS NOT NULL;
-- 테이블별 COMMENT 쿼리문
SELECT 'COMMENT ON TABLE ' || TABLE_NAME || ' IS ''' || COMMENTS || ''';'
FROM USER_TAB_COMMENTS
WHERE COMMENTS IS NOT NULL;
COMMENT ON TABLE TABLE_NAME IS 'COMMENTS text';
-- 컬럼별 COMMENT 쿼리문
SELECT 'COMMENT ON COLUMN ' || TABLE_NAME || '.' || COLUMN_NAME || ' IS ''' || COMMENTS || ''';'
FROM USER_COL_COMMENTS
WHERE COMMENTS IS NOT NULL;
COMMENT ON COLUMN TABLE_NAME.COLUMN_NAME IS 'COMMENTS';
'Computer_IT > DBMS' 카테고리의 다른 글
[PostgreSQL] Function 내용 수정 (0) | 2019.05.17 |
---|---|
Oracle 테이블에서 날짜형식의 테이블만 추출하는 정규표현식 (0) | 2018.08.08 |
사용하기 쉬운 쿼리툴 _ DbVisualizer 장단점 (0) | 2015.06.17 |
h2 database utc time select (0) | 2013.05.21 |
DB2 - SNAPSHOT (0) | 2010.10.29 |
Jeus Postgresql datasource logintimeout 오류
사례
Tmax의 Jeus에서 PostgreSQL 설정후 [TEST] 수행시 logintimeout 에러가 발생
원인 :
1. Driver Class를 org.postgresql.Driver 로 설정한것이 문제
2. JEUS 에서 사용하기 위해선 javax.sql.CommonDataSource 를 상속 받아 구현한 class가 필요함
해결 :
아래 Class 로 설정하면 에러 발생하지 않음 ( postgresql jdbc 드라이버에 포함되어있음 )
Driver Class : org.postgresql.jdbc3.Jdbc3PoolingDataSource
참고자료 :
org.postgresql.jdbc3.Jdbc3PoolingDataSource
https://jdbc.postgresql.org/development/privateapi/org/postgresql/jdbc3/Jdbc3ConnectionPool.html
(setTimeout이 구현되어있음)
org.postgresql.Driver :
https://jdbc.postgresql.org/development/privateapi/org/postgresql/Driver.html
(setTimeout이 없음)
추가적으로
JEUS는 other 선택시 derby 세팅을 기본으로 하다 보니 create=true; 옵션이 들어가다 보니 문제가 발생하니 "create=true;" 옵션 제거도 필요함
'Computer_IT > 오류메세지' 카테고리의 다른 글
비즈니스 원드라이브 - 네트워크 드라이브 연결 오류 (0) | 2021.02.02 |
---|---|
ConflictingBeanDefinitionException (0) | 2017.07.21 |
• Windows 10 x64 기반 시스템용 Internet Explorer Flash Player 보안 업데이트(KB3087040) - 오류 0x80004005 (0) | 2015.09.22 |
Cannot find 'XINPUT1_3.dll', Please, re-install this application (0) | 2014.05.11 |
에버노트 설치/업그레이드 안되는 현상 (0) | 2013.04.02 |
Creative Cloud 직접 다운로드
FlashBuilder 4.7 Standalone Download
링크 : https://helpx.adobe.com/kr/creative-cloud/kb/creative-cloud-apps-download.html
'Computer_IT > FLEX_AIR' 카테고리의 다른 글
[wonderfl] Lightning Effect (as3) (0) | 2015.06.15 |
---|---|
[wonderfl] particle 참고 할 샘플 (0) | 2015.03.05 |
Adobe Flash Player Download Link (0) | 2015.01.14 |
wonderfl - MoviePuzzleTest (0) | 2014.10.31 |
wonderfl-긴 이미지 붙여서 스크룰 (0) | 2014.10.29 |
joybuy.com 트래킹 번호 tracking number
joybuy.com 에서 물품을 구매 한뒤 Tracking 조회는 가능하나 실질적인 Tracking Number를 알수가 없었다.
방법은 의외로 간단...
My Joybuy> My Orders> Order Details
배송 상세 페이지에서 소스 보기를 하면 된다.
Ctrl + F 로 exNo로 몇번 다음다음... 찾다보면 exNo항목이 배송추적 번호.
그뒤 배송추적 사이트에서 exNo뒤의 값을 아래 사이트에 넣어 보면 동일한 내용인것을 알수 있다.
https://t.17track.net/ko#nums=RG블라블라...
'세상살면서' 카테고리의 다른 글
olleh tv 일반매장용 비즈형(기본팩) (0) | 2014.10.28 |
---|---|
광명시민운동장 주변 소음공해 (소음 공해) / 광명 시민운동장 (0) | 2013.10.06 |
WIBRO내장해서 쓰자 / Intel(R) Centrino(R) WiMax 6250 교체기 (0) | 2013.05.16 |
인텔 코어 i7 노트북 (Intel core i7 cpu) (0) | 2011.09.10 |
Modacom(모다컴) - StrongEgg(스트롱에그) 버그 (0) | 2011.08.19 |
highcharts _ linux epoch time 구하기 ( date 명령 이용 )
1. highcharts / datetime / csv 에서 사용하기 위한 linux epoch time 구하기
2. highcharts 등에서 x axis 값 타입을 datetime 형식으로 사용할때 테스트 용도
linux (date)
] date -d "2017-11-16 13:00:01" -u +%s
1510837201
] date -d "2017-11-16 14:00:02" -u +%s
1510840802
] date -d "2017-11-16 15:00:03" -u +%s
1510844403
] date +%s
1510844404
csv 데이터 ( 뒤에 000을 붙여서 13자리로 만듬 )
1510837201000,10
1510840802000,20
1510844403000,30
highcharts 옵션
highcharts 옵션에서...
options = {
global: {
useUTC: false
},
xAxis : {
type: 'datetime'
}
결과
ConflictingBeanDefinitionException
Caused by: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'blablabla' for bean class [com.helloworld] conflicts with existing, non-compatible bean definition of same name and class [com.helloworld]
원인
output(compile)된 class 찌꺼기에서 anotation 중복이 발생
해결 방법
compile된 class 경로 가서 과거 생성된 파일들을 지워 준다.
'Computer_IT > 오류메세지' 카테고리의 다른 글
비즈니스 원드라이브 - 네트워크 드라이브 연결 오류 (0) | 2021.02.02 |
---|---|
Jeus Postgresql datasource logintimeout 오류 (3) | 2018.04.08 |
• Windows 10 x64 기반 시스템용 Internet Explorer Flash Player 보안 업데이트(KB3087040) - 오류 0x80004005 (0) | 2015.09.22 |
Cannot find 'XINPUT1_3.dll', Please, re-install this application (0) | 2014.05.11 |
에버노트 설치/업그레이드 안되는 현상 (0) | 2013.04.02 |
스파이더맨: 홈커밍 (Spider-Man: Homecoming, 2017)
스파이더맨: 홈커밍 (Spider-Man: Homecoming, 2017) 엔딩 쿠키 영상
1. 영화 끝난뒤 쿠키 1개
2. 제작자 이름들 모두 지나간뒤 추가 쿠키 1개
총2개
'Anime&Movies' 카테고리의 다른 글
닥터 스트레인지 - Doctor Strange, 2016 (0) | 2016.11.13 |
---|---|
트윈 스피카 (Futatsu No Spica) (2) | 2010.05.15 |
잠뇌 조사실 1-26 (1) | 2010.05.12 |
다이버젠스 이브(Divergence Eve) - 2003 (13) (0) | 2010.05.09 |
폭렬닌자 고에몬 (Goemon, 2009) (0) | 2009.10.20 |
닥터 스트레인지 - Doctor Strange, 2016
'Anime&Movies' 카테고리의 다른 글
스파이더맨: 홈커밍 (Spider-Man: Homecoming, 2017) (0) | 2017.07.12 |
---|---|
트윈 스피카 (Futatsu No Spica) (2) | 2010.05.15 |
잠뇌 조사실 1-26 (1) | 2010.05.12 |
다이버젠스 이브(Divergence Eve) - 2003 (13) (0) | 2010.05.09 |
폭렬닌자 고에몬 (Goemon, 2009) (0) | 2009.10.20 |
SK T포켓파이 M APN 주소
'HardWare' 카테고리의 다른 글
IPTIME 공유기 자동업데이트 (0) | 2015.03.21 |
---|---|
LG G Pad V410 AT&T GSM Unlocked 7-Inch 4G LTE Wi-Fi 16GB Tablet GPS 성능 (0) | 2015.02.28 |
엑스스플릿 유튜브 채팅창 설정 (XSplit Broadcaster)
XSplit 사용시 유튜브 채팅창 화면상에 추가하기 (브라우저 팝업 X)
Youtube 나 Twitch.tv 등은 채팅 API가 공개되어있어서 Third Party가 채팅 내용을 접근 가능함.
물론 XSplit도 가능
가장 마지막의 Youtube Live Ch… 선택
비슷한게 2가지가 있음.
1. IRC 버전 ( IRC 버전이 좀더 빠름 )
2. WebSocket 버전 / via HTML5 라고 표기된 버전
Other 의 Youtube Live Chat Viewer (Beta) 선택
추가된것 확인 (아직은 Youtube와 연계되지 않은 상태)
우측 마우스 버튼 선택 및 하단 에서 선택후 [설정] 선택
Account 의 Authorize XSPlit to use Youtube Live 선택후 아래의 Google 인증과정 진행
Live Chats 에서 현재 설정된 스트리밍 항목 선택
이제 방송전 테스트
youtube 홈 화면의 우측 자신의 앰블럼 선택후 크리에이터 스튜디오 선택
좌측 실시간 스트리밍 / 지금 스트리밍하기[베타] 선택
이곳에다 메시지를 적어서 테스트 가능
인증과정을 거쳐 서로 연계가 이루어진 상태이기 떄문에 메시지를 적는 즉시 화면상 표시가됨
Opacity 로 투명도 조절
메모리에 소스 유지[체크 추천] 화면 전환시 이어서 전환됨
아래의 다양한 탭항목의 값을 조절하여 자신에 맞는 환경 설정
실제 사용 사례
구글크롬 55 베타버전 릴리즈 및 html5test.com 점수 증가 (Chrome)
평소 Chrome의 Beta(Dev) 버전으로 사용중 Chrome Beta 55가 릴리즈 되어 http://html5test.com 에서 점수를 확인해봄
기존 Chrome 54 버전
업데이트된 Chrome 55 개발자 버전
스코어 증가에 영향을 준 항목
(우측이 Chrome 55)
Pointer Events 추가
우측이 Chrome 55
Async and Await 추가
openssl 속도 측정
단순 참고용...
사용커맨드
> openssl speed -evp aes256 -elapsed
Synology NAS 712+
CPU : Intel Atom D425 Monocore (1C/2T) 1.8GHz x86 Processor
SYNONAS> openssl speed -evp aes256 -elapsed
You have chosen to measure elapsed time instead of user CPU time.
Doing aes-256-cbc for 3s on 16 size blocks: 620447 aes-256-cbc's in 3.01s
Doing aes-256-cbc for 3s on 64 size blocks: 183449 aes-256-cbc's in 3.00s
Doing aes-256-cbc for 3s on 256 size blocks: 75143 aes-256-cbc's in 3.00s
Doing aes-256-cbc for 3s on 1024 size blocks: 13415 aes-256-cbc's in 3.00s
Doing aes-256-cbc for 3s on 8192 size blocks: 2000 aes-256-cbc's in 3.00s
OpenSSL 1.0.1p-fips 9 Jul 2015
built on: Wed Oct 28 12:37:18 2015
options:bn(64,32) rc4(8x,mmx) des(ptr,risc1,16,long) aes(partial) idea(int) blowfish(idx)
compiler: /usr/local/i686-pc-linux-gnu/bin/i686-pc-linux-gnu-ccache-gcc -I. -I.. -I../include -fPIC -DOPENSSL_PIC -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -I/usr/local/i686-pc-linux-gnu/i686-pc-linux-gnu/sys-root/usr/include -DSYNO_X64 -O2 -I/usr/syno/include -DSYNO_ARCH=32 -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DSYNO_PLATFORM=X64 -g -pipe -DOPENSSL_NO_ERR -DL_ENDIAN -O3 -fomit-frame-pointer -Wall -DOPENSSL_BN_ASM_PART_WORDS -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_GF2m -I/usr/syno//include -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DRMD160_ASM -DAES_ASM -DVPAES_ASM -DWHIRLPOOL_ASM -DGHASH_ASM
The 'numbers' are in 1000s of bytes per second processed.
type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes
aes-256-cbc 3298.06k 3913.58k 6412.20k 4578.99k 5461.33k
Rasberry PI 2
CPU : Broadcom BCM2836 (CPU, GPU, DSP, SDRAM) 900 MHz quad-core ARM Cortex A7 (ARMv7 instruction set)
pi@raspi ~ $ openssl speed -evp aes256 -elapsed
You have chosen to measure elapsed time instead of user CPU time.
Doing aes-256-cbc for 3s on 16 size blocks: 2704173 aes-256-cbc's in 3.00s
Doing aes-256-cbc for 3s on 64 size blocks: 752159 aes-256-cbc's in 3.00s
Doing aes-256-cbc for 3s on 256 size blocks: 193098 aes-256-cbc's in 3.00s
Doing aes-256-cbc for 3s on 1024 size blocks: 48585 aes-256-cbc's in 3.00s
Doing aes-256-cbc for 3s on 8192 size blocks: 6092 aes-256-cbc's in 3.00s
OpenSSL 1.0.1k 8 Jan 2015
built on: Sat Jun 13 16:36:02 2015
options:bn(64,32) rc4(ptr,char) des(idx,cisc,16,long) aes(partial) blowfish(ptr)
compiler: -I. -I.. -I../include -fPIC -DOPENSSL_PIC -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DTERMIO -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -Wl,-z,relro -Wa,--noexecstack -Wall -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DAES_ASM -DGHASH_ASM
The 'numbers' are in 1000s of bytes per second processed.
type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes
aes-256-cbc 14422.26k 16046.06k 16477.70k 16583.68k 16635.22k
WD My Cloud
CPU : Comcerto 2000 EVM (ARMv7 Processor rev 1 (v7l))
odroid XU4
cpu : Samsung Exynos5422 Cortex™-A15 2Ghz and Cortex™-A7 Octa core CPUs
odroid@odroid:~$ openssl speed -evp aes256 -elapsed
You have chosen to measure elapsed time instead of user CPU time.
Doing aes-256-cbc for 3s on 16 size blocks: 11501687 aes-256-cbc's in 3.00s
Doing aes-256-cbc for 3s on 64 size blocks: 3188790 aes-256-cbc's in 3.01s
Doing aes-256-cbc for 3s on 256 size blocks: 828341 aes-256-cbc's in 3.00s
Doing aes-256-cbc for 3s on 1024 size blocks: 209031 aes-256-cbc's in 3.00s
Doing aes-256-cbc for 3s on 8192 size blocks: 26222 aes-256-cbc's in 3.00s
OpenSSL 1.0.2d 9 Jul 2015
built on: reproducible build, date unspecified
options:bn(64,32) rc4(ptr,char) des(idx,cisc,16,long) aes(partial) blowfish(ptr)
compiler: cc -I. -I.. -I../include -fPIC -DOPENSSL_PIC -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -Wl,-Bsymbolic-functions -Wl,-z,relro -Wa,--noexecstack -Wall -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DAES_ASM -DBSAES_ASM -DGHASH_ASM
The 'numbers' are in 1000s of bytes per second processed.
type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes
aes-256-cbc 61342.33k 67801.51k 70685.10k 71349.25k 71603.54k
pine64 - 2g
ubuntu@localhost:~$ openssl speed -evp aes256 -elapsed
You have chosen to measure elapsed time instead of user CPU time.
Doing aes-256-cbc for 3s on 16 size blocks: 24274186 aes-256-cbc's in 3.00s
Doing aes-256-cbc for 3s on 64 size blocks: 14124698 aes-256-cbc's in 3.00s
Doing aes-256-cbc for 3s on 256 size blocks: 5183353 aes-256-cbc's in 3.00s
Doing aes-256-cbc for 3s on 1024 size blocks: 1500357 aes-256-cbc's in 3.00s
Doing aes-256-cbc for 3s on 8192 size blocks: 192865 aes-256-cbc's in 3.00s
OpenSSL 1.0.2g-fips 1 Mar 2016
built on: reproducible build, date unspecified
options:bn(64,64) rc4(ptr,char) des(idx,cisc,16,int) aes(partial) blowfish(ptr)
compiler: cc -I. -I.. -I../include -fPIC -DOPENSSL_PIC -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-Bsymbolic-functions -Wl,-z,relro -Wa,--noexecstack -Wall -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM
The 'numbers' are in 1000s of bytes per second processed.
type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes
aes-256-cbc 129462.33k 301326.89k 442312.79k 512121.86k 526650.03k
Intel I5 3570-3.4G
C:\>openssl speed -evp aes256 -elapsed
WARNING: can't open config file: f:\repo\winlibs_openssl_vc11_x86/openssl.cnf
You have chosen to measure elapsed time instead of user CPU time.
Doing aes-256-cbc for 3s on 16 size blocks: 88348330 aes-256-cbc's in 3.00s
Doing aes-256-cbc for 3s on 64 size blocks: 23161673 aes-256-cbc's in 3.00s
Doing aes-256-cbc for 3s on 256 size blocks: 5846825 aes-256-cbc's in 3.00s
Doing aes-256-cbc for 3s on 1024 size blocks: 1471089 aes-256-cbc's in 3.00s
Doing aes-256-cbc for 3s on 8192 size blocks: 183546 aes-256-cbc's in 3.00s
OpenSSL 1.0.1i 6 Aug 2014
built on: Thu Aug 7 17:22:15 2014
options:bn(64,64) rc4(16x,int) des(idx,cisc,2,long) aes(partial) idea(int) blowf
ish(idx)
compiler: cl /MD /Ox -DOPENSSL_THREADS -DDSO_WIN32 -W3 -Gs0 -Gy -nologo -DOPEN
SSL_SYSNAME_WIN32 -DWIN32_LEAN_AND_MEAN -DL_ENDIAN -DUNICODE -D_UNICODE -D_CRT_S
ECURE_NO_DEPRECATE -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MO
NT5 -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_A
SM -DVPAES_ASM -DBSAES_ASM -DWHIRLPOOL_ASM -DGHASH_ASM -DOPENSSL_USE_APPLINK -I.
-DOPENSSL_NO_RC5 -DOPENSSL_NO_MD2 -DOPENSSL_NO_KRB5 -DOPENSSL_NO_JPAKE -DOPENSS
L_NO_DYNAMIC_ENGINE
The 'numbers' are in 1000s of bytes per second processed.
type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes
aes-256-cbc 471034.08k 493951.04k 498762.81k 502131.71k 500869.03k
'HardWare > 라즈베리파이(Raspberry Pi)' 카테고리의 다른 글
RaspberryPi 2 - redis-benchmark result (0) | 2015.03.26 |
---|---|
라즈베리파이 레디스 설치 로그 ( Raspberry redis install history ) (0) | 2015.03.26 |
라즈베리파이 타임존 설정 (0) | 2015.03.23 |
• Windows 10 x64 기반 시스템용 Internet Explorer Flash Player 보안 업데이트(KB3087040) - 오류 0x80004005
• Windows 10 x64 기반 시스템용 Internet Explorer Flash Player 보안 업데이트(KB3087040) - 오류 0x80004005
긴급 Flash 보안 업데이트 중의 하나인 KB3087040 업데이트가
위처럼 메시지가 뜨면서 Flash 업데이트가 안될경우
x86 Windows 10.
x64 Windows 10.
직접 다운받아서 설치후 재부팅 하면 업데이트 완료!
업데이트후에도 위와 같은 메시지가 뜰수 있으나 업데이트 확인을 한번 하면 메시지가 없어진것을 확인할수 있음.
Edge 와 InternetExplorer 11의 Flash 버전이 바뀐것을 확인!
'Computer_IT > 오류메세지' 카테고리의 다른 글
Jeus Postgresql datasource logintimeout 오류 (3) | 2018.04.08 |
---|---|
ConflictingBeanDefinitionException (0) | 2017.07.21 |
Cannot find 'XINPUT1_3.dll', Please, re-install this application (0) | 2014.05.11 |
에버노트 설치/업그레이드 안되는 현상 (0) | 2013.04.02 |
nforge4 설치시 routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed while accessing (0) | 2013.03.19 |
Java Bitmap pixel to image(png) setRGB example
Java에서 Bitmap을 Pixel 단위로 처리 할때 샘플...
Source...
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
public class BufferedImagePixels {
public static void main(String[] args) {
BufferedImage bufferedImage = new BufferedImage(300, 300,
BufferedImage.TYPE_INT_RGB);
int rgb = bufferedImage.getRGB(1, 1);
int w = bufferedImage.getWidth(null);
int h = bufferedImage.getHeight(null);
int[] rgbs = new int[w * h];
bufferedImage.getRGB(0, 0, w, h, rgbs, 0, w);
rgb = 0xFF00FF00; // green
for (int i = 1; i < w; i++) {
bufferedImage.setRGB(i, i, rgb);
}
File outputfile = new File("c:\\image.png");
try {
// png,
ImageIO.write(bufferedImage, "png", outputfile);
} catch (IOException e) {
e.printStackTrace();
}
}
}
결과...
'Computer_IT > JAVA' 카테고리의 다른 글
[MAVEN] unmappable character for encoding EUC_KR (0) | 2018.08.23 |
---|---|
[spring] logback 로그 2번 찍힘 (0) | 2018.08.09 |
JDK 7 release - Bug Fixes history (0) | 2014.10.20 |
eclipse @author 변경하기 (0) | 2013.07.02 |
jackson parser sample (0) | 2013.04.02 |
사용하기 쉬운 쿼리툴 _ DbVisualizer 장단점
DB_JDBC설정
JDBC설정 화면
URL Format과 DriverClass 를 Ctrl+C , Ctrl+V만 해도 기본적인 DB연결 문자열은 바로 생성 가능
Class.forName("net.sourceforge.jtds.jdbc.Driver");
conn = DriverManager.getConnection("jdbc:jtds:sqlserver://<server>:<port1433>;DatabaseName=<database>", "user", "password");
장점 :
1. Java기반으로 제작된 프로그램
2. Java개발시 사용되는 JDBC연결을 통해 JDBC를 지원하는 모든 DB연결가능
(지원되지 않는 DB라도 JDBC 드라이버만 있으면 기본적인 연결 및 쿼리 가능) ex) Cubrid, Tibero
3. 상용 프로그램으로 꾸준한 업데이트 지원
4. 데이터를 손쉽게 Chart로 표현 가능
5. 설치된경로\resources\profiles 에 DB별로 조회가능한 Dictionary 조회 쿼리 존재
6. DB별로 특성화된 구조로 표현
단점 :
1. 대량의 데이터 Fetch 시에 Memory 점유율(Java메모리)이 높음
2. 무료로 사용가능하나 무료버전은 많은 기능이 제약됨
3. LongRun 쿼리 Stop이 불가할땐 재시작 해야함
4. 범용성을 지니다 보니 전문적인 admin 부분에선 약함
5. 초반 설치시 Editor에서 한글을 사용하기 위해선 한글 Font 지정 필요
Tools->Tool Properties -> [General] -> General -> Apperance -> Fonts
6. Pro버전 라이센스가 비쌈-1copy $179 (여러 DB를 사용해야 하는 직업을 가진 사람은 적당한 툴)
지원 기능 설명 : http://www.dbvis.com/features/
다운로드 링크 : http://www.dbvis.com/download/
'Computer_IT > DBMS' 카테고리의 다른 글
Oracle 테이블에서 날짜형식의 테이블만 추출하는 정규표현식 (0) | 2018.08.08 |
---|---|
Oracle] Table and Column Comments extract query (0) | 2018.08.08 |
h2 database utc time select (0) | 2013.05.21 |
DB2 - SNAPSHOT (0) | 2010.10.29 |
DB2 (0) | 2010.10.28 |
[wonderfl] Lightning Effect (as3)
http://wonderfl.net/c/8Z2I
'Computer_IT > FLEX_AIR' 카테고리의 다른 글
Creative Cloud 직접 다운로드 (0) | 2018.04.07 |
---|---|
[wonderfl] particle 참고 할 샘플 (0) | 2015.03.05 |
Adobe Flash Player Download Link (0) | 2015.01.14 |
wonderfl - MoviePuzzleTest (0) | 2014.10.31 |
wonderfl-긴 이미지 붙여서 스크룰 (0) | 2014.10.29 |
Amazon CloudDrive Unlimited Storage Upload / Download Test
https://www.amazon.com/clouddrive/unlimited
'Media' 카테고리의 다른 글
KTX 차량 안내 에니메이션 (0) | 2011.12.02 |
---|---|
TAT augmented ID (증강현실을 이용한 개인 ID) (0) | 2009.10.01 |
[쉬자] 마빡이 7회 (1) | 2006.10.02 |
RaspberryPi 2 - redis-benchmark result
pi@raspberrypi ~/redis-2.8.19/src $ ./redis-benchmark
====== PING_INLINE ======
100000 requests completed in 6.84 seconds
50 parallel clients
3 bytes payload
keep alive: 1
0.00% <= 1 milliseconds
27.08% <= 2 milliseconds
83.75% <= 3 milliseconds
96.20% <= 4 milliseconds
99.61% <= 5 milliseconds
99.89% <= 6 milliseconds
99.98% <= 7 milliseconds
99.99% <= 8 milliseconds
100.00% <= 8 milliseconds
14613.47 requests per second
====== PING_BULK ======
100000 requests completed in 7.02 seconds
50 parallel clients
3 bytes payload
keep alive: 1
0.00% <= 1 milliseconds
82.06% <= 2 milliseconds
99.45% <= 3 milliseconds
100.00% <= 3 milliseconds
14247.04 requests per second
[8838] 26 Mar 22:51:21.842 * 100 changes in 300 seconds. Saving...
[8838] 26 Mar 22:51:21.843 * Background saving started by pid 8849
[8849] 26 Mar 22:51:21.861 * DB saved on disk
[8849] 26 Mar 22:51:21.864 * RDB: 0 MB of memory used by copy-on-write
[8838] 26 Mar 22:51:21.945 * Background saving terminated with success
====== SET ======
100000 requests completed in 7.51 seconds
50 parallel clients
3 bytes payload
keep alive: 1
0.00% <= 1 milliseconds
0.26% <= 2 milliseconds
15.47% <= 3 milliseconds
79.39% <= 4 milliseconds
93.76% <= 5 milliseconds
98.51% <= 6 milliseconds
98.92% <= 7 milliseconds
99.13% <= 8 milliseconds
99.41% <= 9 milliseconds
99.86% <= 10 milliseconds
99.97% <= 11 milliseconds
100.00% <= 12 milliseconds
100.00% <= 12 milliseconds
13317.35 requests per second
====== GET ======
100000 requests completed in 6.97 seconds
50 parallel clients
3 bytes payload
keep alive: 1
0.00% <= 1 milliseconds
30.21% <= 2 milliseconds
84.57% <= 3 milliseconds
97.20% <= 4 milliseconds
99.83% <= 5 milliseconds
99.94% <= 6 milliseconds
100.00% <= 7 milliseconds
100.00% <= 7 milliseconds
14345.14 requests per second
====== INCR ======
100000 requests completed in 7.67 seconds
50 parallel clients
3 bytes payload
keep alive: 1
0.00% <= 1 milliseconds
0.11% <= 2 milliseconds
8.53% <= 3 milliseconds
80.30% <= 4 milliseconds
90.93% <= 5 milliseconds
99.45% <= 6 milliseconds
99.74% <= 7 milliseconds
99.99% <= 8 milliseconds
100.00% <= 8 milliseconds
13041.21 requests per second
====== LPUSH ======
100000 requests completed in 7.65 seconds
50 parallel clients
3 bytes payload
keep alive: 1
0.00% <= 1 milliseconds
0.12% <= 2 milliseconds
8.43% <= 3 milliseconds
80.21% <= 4 milliseconds
90.69% <= 5 milliseconds
99.31% <= 6 milliseconds
99.71% <= 7 milliseconds
99.98% <= 8 milliseconds
100.00% <= 8 milliseconds
13075.31 requests per second
====== LPOP ======
100000 requests completed in 7.39 seconds
50 parallel clients
3 bytes payload
keep alive: 1
0.00% <= 1 milliseconds
0.37% <= 2 milliseconds
20.85% <= 3 milliseconds
80.13% <= 4 milliseconds
94.46% <= 5 milliseconds
98.94% <= 6 milliseconds
99.60% <= 7 milliseconds
99.91% <= 8 milliseconds
100.00% <= 8 milliseconds
13529.97 requests per second
====== SADD ======
100000 requests completed in 7.31 seconds
50 parallel clients
3 bytes payload
keep alive: 1
0.00% <= 1 milliseconds
0.26% <= 2 milliseconds
18.35% <= 3 milliseconds
80.69% <= 4 milliseconds
95.68% <= 5 milliseconds
99.43% <= 6 milliseconds
99.83% <= 7 milliseconds
100.00% <= 8 milliseconds
100.00% <= 8 milliseconds
13678.02 requests per second
====== SPOP ======
100000 requests completed in 6.80 seconds
50 parallel clients
3 bytes payload
keep alive: 1
0.00% <= 1 milliseconds
49.03% <= 2 milliseconds
93.90% <= 3 milliseconds
99.67% <= 4 milliseconds
99.98% <= 5 milliseconds
100.00% <= 5 milliseconds
14705.88 requests per second
====== LPUSH (needed to benchmark LRANGE) ======
100000 requests completed in 7.67 seconds
50 parallel clients
3 bytes payload
keep alive: 1
0.00% <= 1 milliseconds
0.07% <= 2 milliseconds
7.12% <= 3 milliseconds
80.79% <= 4 milliseconds
90.10% <= 5 milliseconds
99.25% <= 6 milliseconds
99.67% <= 7 milliseconds
99.96% <= 8 milliseconds
100.00% <= 11 milliseconds
13044.61 requests per second
[8838] 26 Mar 22:52:22.074 * 10000 changes in 60 seconds. Saving...
[8838] 26 Mar 22:52:22.075 * Background saving started by pid 8850
[8850] 26 Mar 22:52:22.327 * DB saved on disk
[8850] 26 Mar 22:52:22.330 * RDB: 0 MB of memory used by copy-on-write
[8838] 26 Mar 22:52:22.379 * Background saving terminated with success
====== LRANGE_100 (first 100 elements) ======
100000 requests completed in 22.43 seconds
50 parallel clients
3 bytes payload
keep alive: 1
0.00% <= 3 milliseconds
0.01% <= 4 milliseconds
0.86% <= 5 milliseconds
90.79% <= 6 milliseconds
99.46% <= 7 milliseconds
99.65% <= 8 milliseconds
99.72% <= 9 milliseconds
99.80% <= 10 milliseconds
99.85% <= 11 milliseconds
99.89% <= 12 milliseconds
99.96% <= 13 milliseconds
99.99% <= 14 milliseconds
100.00% <= 14 milliseconds
4458.71 requests per second
====== LRANGE_300 (first 300 elements) ======
100000 requests completed in 59.10 seconds
50 parallel clients
3 bytes payload
keep alive: 1
0.00% <= 3 milliseconds
0.00% <= 4 milliseconds
0.00% <= 5 milliseconds
0.01% <= 6 milliseconds
0.01% <= 7 milliseconds
0.01% <= 8 milliseconds
0.02% <= 9 milliseconds
0.03% <= 10 milliseconds
0.12% <= 11 milliseconds
0.80% <= 12 milliseconds
6.19% <= 13 milliseconds
27.69% <= 14 milliseconds
64.12% <= 15 milliseconds
89.81% <= 16 milliseconds
98.40% <= 17 milliseconds
99.73% <= 18 milliseconds
99.93% <= 19 milliseconds
99.95% <= 20 milliseconds
99.96% <= 21 milliseconds
99.97% <= 22 milliseconds
99.98% <= 23 milliseconds
99.98% <= 24 milliseconds
99.99% <= 25 milliseconds
99.99% <= 26 milliseconds
100.00% <= 27 milliseconds
100.00% <= 28 milliseconds
100.00% <= 28 milliseconds
1691.93 requests per second
====== LRANGE_500 (first 450 elements) ======
100000 requests completed in 83.56 seconds
50 parallel clients
3 bytes payload
keep alive: 1
0.00% <= 3 milliseconds
0.00% <= 4 milliseconds
0.00% <= 5 milliseconds
0.00% <= 6 milliseconds
0.01% <= 7 milliseconds
0.01% <= 10 milliseconds
0.01% <= 11 milliseconds
0.01% <= 12 milliseconds
0.01% <= 13 milliseconds
0.02% <= 14 milliseconds
0.05% <= 15 milliseconds
0.12% <= 16 milliseconds
0.28% <= 17 milliseconds
1.12% <= 18 milliseconds
6.05% <= 19 milliseconds
25.01% <= 20 milliseconds
68.55% <= 21 milliseconds
91.51% <= 22 milliseconds
97.99% <= 23 milliseconds
99.52% <= 24 milliseconds
99.82% <= 25 milliseconds
99.89% <= 26 milliseconds
99.95% <= 27 milliseconds
99.97% <= 28 milliseconds
99.97% <= 29 milliseconds
99.98% <= 30 milliseconds
99.98% <= 31 milliseconds
99.98% <= 36 milliseconds
99.98% <= 37 milliseconds
99.99% <= 38 milliseconds
99.99% <= 39 milliseconds
99.99% <= 40 milliseconds
99.99% <= 41 milliseconds
99.99% <= 42 milliseconds
99.99% <= 43 milliseconds
100.00% <= 44 milliseconds
100.00% <= 45 milliseconds
100.00% <= 46 milliseconds
100.00% <= 47 milliseconds
100.00% <= 48 milliseconds
1196.73 requests per second
====== LRANGE_600 (first 600 elements) ======
100000 requests completed in 109.33 seconds
50 parallel clients
3 bytes payload
keep alive: 1
0.00% <= 3 milliseconds
0.00% <= 4 milliseconds
0.00% <= 5 milliseconds
0.00% <= 6 milliseconds
0.01% <= 7 milliseconds
0.01% <= 8 milliseconds
0.01% <= 9 milliseconds
0.01% <= 10 milliseconds
0.01% <= 11 milliseconds
0.02% <= 12 milliseconds
0.02% <= 13 milliseconds
0.02% <= 14 milliseconds
0.02% <= 15 milliseconds
0.03% <= 16 milliseconds
0.03% <= 17 milliseconds
0.04% <= 18 milliseconds
0.06% <= 19 milliseconds
0.16% <= 20 milliseconds
0.33% <= 21 milliseconds
0.77% <= 22 milliseconds
2.57% <= 23 milliseconds
6.88% <= 24 milliseconds
16.61% <= 25 milliseconds
31.92% <= 26 milliseconds
48.75% <= 27 milliseconds
65.71% <= 28 milliseconds
81.48% <= 29 milliseconds
92.03% <= 30 milliseconds
97.02% <= 31 milliseconds
99.04% <= 32 milliseconds
99.55% <= 33 milliseconds
99.74% <= 34 milliseconds
99.88% <= 35 milliseconds
99.91% <= 36 milliseconds
99.92% <= 37 milliseconds
99.93% <= 38 milliseconds
99.93% <= 39 milliseconds
99.94% <= 40 milliseconds
99.94% <= 41 milliseconds
99.94% <= 42 milliseconds
99.95% <= 43 milliseconds
99.95% <= 44 milliseconds
99.96% <= 45 milliseconds
99.96% <= 46 milliseconds
99.96% <= 47 milliseconds
99.97% <= 48 milliseconds
99.97% <= 49 milliseconds
99.98% <= 50 milliseconds
99.98% <= 51 milliseconds
99.98% <= 52 milliseconds
99.98% <= 53 milliseconds
99.98% <= 54 milliseconds
99.98% <= 55 milliseconds
99.98% <= 56 milliseconds
99.98% <= 57 milliseconds
99.99% <= 58 milliseconds
99.99% <= 59 milliseconds
99.99% <= 60 milliseconds
99.99% <= 61 milliseconds
99.99% <= 62 milliseconds
100.00% <= 63 milliseconds
100.00% <= 64 milliseconds
100.00% <= 65 milliseconds
914.62 requests per second
[8838] 26 Mar 22:56:56.672 * 10000 changes in 60 seconds. Saving...
[8838] 26 Mar 22:56:56.674 * Background saving started by pid 8851
[8851] 26 Mar 22:56:56.953 * DB saved on disk
[8851] 26 Mar 22:56:56.956 * RDB: 0 MB of memory used by copy-on-write
[8838] 26 Mar 22:56:56.981 * Background saving terminated with success
====== MSET (10 keys) ======
100000 requests completed in 13.93 seconds
50 parallel clients
3 bytes payload
keep alive: 1
0.00% <= 2 milliseconds
0.04% <= 3 milliseconds
0.04% <= 4 milliseconds
0.07% <= 5 milliseconds
0.79% <= 6 milliseconds
86.61% <= 7 milliseconds
91.39% <= 8 milliseconds
96.34% <= 9 milliseconds
98.89% <= 10 milliseconds
99.75% <= 11 milliseconds
99.82% <= 12 milliseconds
99.94% <= 13 milliseconds
99.97% <= 14 milliseconds
99.98% <= 15 milliseconds
100.00% <= 16 milliseconds
100.00% <= 16 milliseconds
7177.21 requests per second
pi@raspberrypi ~/redis-2.8.19/src $ [8838] 26 Mar 22:57:57.005 * 10000 changes in 60 seconds. Saving...
[8838] 26 Mar 22:57:57.007 * Background saving started by pid 8852
[8852] 26 Mar 22:57:57.281 * DB saved on disk
[8852] 26 Mar 22:57:57.284 * RDB: 0 MB of memory used by copy-on-write
[8838] 26 Mar 22:57:57.309 * Background saving terminated with success
'HardWare > 라즈베리파이(Raspberry Pi)' 카테고리의 다른 글
openssl 속도 측정 (1) | 2015.11.15 |
---|---|
라즈베리파이 레디스 설치 로그 ( Raspberry redis install history ) (0) | 2015.03.26 |
라즈베리파이 타임존 설정 (0) | 2015.03.23 |
라즈베리파이 레디스 설치 로그 ( Raspberry redis install history )
pi@raspberrypi ~/redis-2.8.19 $ uname -a
Linux raspberrypi 3.18.7-v7+ #755 SMP PREEMPT Thu Feb 12 17:20:48 GMT 2015 armv7l GNU/Linux
pi@raspberrypi ~ $ wget http://download.redis.io/releases/redis-2.8.19.tar.gz
--2015-03-26 22:03:56-- http://download.redis.io/releases/redis-2.8.19.tar.gz
Resolving download.redis.io (download.redis.io)... 109.74.203.151
Connecting to download.redis.io (download.redis.io)|109.74.203.151|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1254857 (1.2M) [application/x-gzip]
Saving to: `redis-2.8.19.tar.gz'
100%[====================================================================================================================================>] 1,254,857 588K/s in 2.1s
2015-03-26 22:03:59 (588 KB/s) - `redis-2.8.19.tar.gz' saved [1254857/1254857]
pi@raspberrypi ~ $ tar xvf redis-2.8.19.tar.gz
redis-2.8.19/
redis-2.8.19/.gitignore
redis-2.8.19/00-RELEASENOTES
redis-2.8.19/BUGS
redis-2.8.19/CONTRIBUTING
redis-2.8.19/COPYING
redis-2.8.19/INSTALL
redis-2.8.19/MANIFESTO
redis-2.8.19/Makefile
redis-2.8.19/README
redis-2.8.19/deps/
redis-2.8.19/deps/Makefile
redis-2.8.19/deps/hiredis/
redis-2.8.19/deps/hiredis/.gitignore
redis-2.8.19/deps/hiredis/.travis.yml
redis-2.8.19/deps/hiredis/CHANGELOG.md
redis-2.8.19/deps/hiredis/COPYING
redis-2.8.19/deps/hiredis/Makefile
redis-2.8.19/deps/hiredis/README.md
redis-2.8.19/deps/hiredis/adapters/
redis-2.8.19/deps/hiredis/adapters/ae.h
redis-2.8.19/deps/hiredis/adapters/libev.h
redis-2.8.19/deps/hiredis/adapters/libevent.h
redis-2.8.19/deps/hiredis/adapters/libuv.h
redis-2.8.19/deps/hiredis/async.c
redis-2.8.19/deps/hiredis/async.h
redis-2.8.19/deps/hiredis/dict.c
redis-2.8.19/deps/hiredis/dict.h
redis-2.8.19/deps/hiredis/examples/
redis-2.8.19/deps/hiredis/examples/example-ae.c
redis-2.8.19/deps/hiredis/examples/example-libev.c
redis-2.8.19/deps/hiredis/examples/example-libevent.c
redis-2.8.19/deps/hiredis/examples/example-libuv.c
redis-2.8.19/deps/hiredis/examples/example.c
redis-2.8.19/deps/hiredis/fmacros.h
redis-2.8.19/deps/hiredis/hiredis.c
redis-2.8.19/deps/hiredis/hiredis.h
redis-2.8.19/deps/hiredis/net.c
redis-2.8.19/deps/hiredis/net.h
redis-2.8.19/deps/hiredis/sds.c
redis-2.8.19/deps/hiredis/sds.h
redis-2.8.19/deps/hiredis/test.c
redis-2.8.19/deps/hiredis/zmalloc.h
redis-2.8.19/deps/jemalloc/
redis-2.8.19/deps/jemalloc/.gitignore
redis-2.8.19/deps/jemalloc/COPYING
redis-2.8.19/deps/jemalloc/ChangeLog
redis-2.8.19/deps/jemalloc/INSTALL
redis-2.8.19/deps/jemalloc/Makefile.in
redis-2.8.19/deps/jemalloc/README
redis-2.8.19/deps/jemalloc/VERSION
redis-2.8.19/deps/jemalloc/autogen.sh
redis-2.8.19/deps/jemalloc/bin/
redis-2.8.19/deps/jemalloc/bin/jemalloc.sh.in
redis-2.8.19/deps/jemalloc/bin/pprof
redis-2.8.19/deps/jemalloc/config.guess
redis-2.8.19/deps/jemalloc/config.stamp.in
redis-2.8.19/deps/jemalloc/config.sub
redis-2.8.19/deps/jemalloc/configure
redis-2.8.19/deps/jemalloc/configure.ac
redis-2.8.19/deps/jemalloc/coverage.sh
redis-2.8.19/deps/jemalloc/doc/
redis-2.8.19/deps/jemalloc/doc/html.xsl.in
redis-2.8.19/deps/jemalloc/doc/jemalloc.3
redis-2.8.19/deps/jemalloc/doc/jemalloc.html
redis-2.8.19/deps/jemalloc/doc/jemalloc.xml.in
redis-2.8.19/deps/jemalloc/doc/manpages.xsl.in
redis-2.8.19/deps/jemalloc/doc/stylesheet.xsl
redis-2.8.19/deps/jemalloc/include/
redis-2.8.19/deps/jemalloc/include/jemalloc/
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/arena.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/atomic.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/base.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/bitmap.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/chunk.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/chunk_dss.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/chunk_mmap.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/ckh.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/ctl.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/extent.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/hash.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/huge.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/jemalloc_internal.h.in
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h.in
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_macros.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/mb.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/mutex.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/private_namespace.sh
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/private_symbols.txt
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/private_unnamespace.sh
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/prng.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/prof.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/public_namespace.sh
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/public_unnamespace.sh
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/ql.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/qr.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/quarantine.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/rb.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/rtree.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/size_classes.sh
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/stats.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/tcache.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/tsd.h
redis-2.8.19/deps/jemalloc/include/jemalloc/internal/util.h
redis-2.8.19/deps/jemalloc/include/jemalloc/jemalloc.sh
redis-2.8.19/deps/jemalloc/include/jemalloc/jemalloc_defs.h.in
redis-2.8.19/deps/jemalloc/include/jemalloc/jemalloc_macros.h.in
redis-2.8.19/deps/jemalloc/include/jemalloc/jemalloc_mangle.sh
redis-2.8.19/deps/jemalloc/include/jemalloc/jemalloc_protos.h.in
redis-2.8.19/deps/jemalloc/include/jemalloc/jemalloc_rename.sh
redis-2.8.19/deps/jemalloc/include/msvc_compat/
redis-2.8.19/deps/jemalloc/include/msvc_compat/inttypes.h
redis-2.8.19/deps/jemalloc/include/msvc_compat/stdbool.h
redis-2.8.19/deps/jemalloc/include/msvc_compat/stdint.h
redis-2.8.19/deps/jemalloc/include/msvc_compat/strings.h
redis-2.8.19/deps/jemalloc/install-sh
redis-2.8.19/deps/jemalloc/src/
redis-2.8.19/deps/jemalloc/src/arena.c
redis-2.8.19/deps/jemalloc/src/atomic.c
redis-2.8.19/deps/jemalloc/src/base.c
redis-2.8.19/deps/jemalloc/src/bitmap.c
redis-2.8.19/deps/jemalloc/src/chunk.c
redis-2.8.19/deps/jemalloc/src/chunk_dss.c
redis-2.8.19/deps/jemalloc/src/chunk_mmap.c
redis-2.8.19/deps/jemalloc/src/ckh.c
redis-2.8.19/deps/jemalloc/src/ctl.c
redis-2.8.19/deps/jemalloc/src/extent.c
redis-2.8.19/deps/jemalloc/src/hash.c
redis-2.8.19/deps/jemalloc/src/huge.c
redis-2.8.19/deps/jemalloc/src/jemalloc.c
redis-2.8.19/deps/jemalloc/src/mb.c
redis-2.8.19/deps/jemalloc/src/mutex.c
redis-2.8.19/deps/jemalloc/src/prof.c
redis-2.8.19/deps/jemalloc/src/quarantine.c
redis-2.8.19/deps/jemalloc/src/rtree.c
redis-2.8.19/deps/jemalloc/src/stats.c
redis-2.8.19/deps/jemalloc/src/tcache.c
redis-2.8.19/deps/jemalloc/src/tsd.c
redis-2.8.19/deps/jemalloc/src/util.c
redis-2.8.19/deps/jemalloc/src/zone.c
redis-2.8.19/deps/jemalloc/test/
redis-2.8.19/deps/jemalloc/test/include/
redis-2.8.19/deps/jemalloc/test/include/test/
redis-2.8.19/deps/jemalloc/test/include/test/SFMT-alti.h
redis-2.8.19/deps/jemalloc/test/include/test/SFMT-params.h
redis-2.8.19/deps/jemalloc/test/include/test/SFMT-params11213.h
redis-2.8.19/deps/jemalloc/test/include/test/SFMT-params1279.h
redis-2.8.19/deps/jemalloc/test/include/test/SFMT-params132049.h
redis-2.8.19/deps/jemalloc/test/include/test/SFMT-params19937.h
redis-2.8.19/deps/jemalloc/test/include/test/SFMT-params216091.h
redis-2.8.19/deps/jemalloc/test/include/test/SFMT-params2281.h
redis-2.8.19/deps/jemalloc/test/include/test/SFMT-params4253.h
redis-2.8.19/deps/jemalloc/test/include/test/SFMT-params44497.h
redis-2.8.19/deps/jemalloc/test/include/test/SFMT-params607.h
redis-2.8.19/deps/jemalloc/test/include/test/SFMT-params86243.h
redis-2.8.19/deps/jemalloc/test/include/test/SFMT-sse2.h
redis-2.8.19/deps/jemalloc/test/include/test/SFMT.h
redis-2.8.19/deps/jemalloc/test/include/test/jemalloc_test.h.in
redis-2.8.19/deps/jemalloc/test/include/test/jemalloc_test_defs.h.in
redis-2.8.19/deps/jemalloc/test/include/test/math.h
redis-2.8.19/deps/jemalloc/test/include/test/mq.h
redis-2.8.19/deps/jemalloc/test/include/test/mtx.h
redis-2.8.19/deps/jemalloc/test/include/test/test.h
redis-2.8.19/deps/jemalloc/test/include/test/thd.h
redis-2.8.19/deps/jemalloc/test/integration/
redis-2.8.19/deps/jemalloc/test/integration/MALLOCX_ARENA.c
redis-2.8.19/deps/jemalloc/test/integration/aligned_alloc.c
redis-2.8.19/deps/jemalloc/test/integration/allocated.c
redis-2.8.19/deps/jemalloc/test/integration/allocm.c
redis-2.8.19/deps/jemalloc/test/integration/mallocx.c
redis-2.8.19/deps/jemalloc/test/integration/mremap.c
redis-2.8.19/deps/jemalloc/test/integration/posix_memalign.c
redis-2.8.19/deps/jemalloc/test/integration/rallocm.c
redis-2.8.19/deps/jemalloc/test/integration/rallocx.c
redis-2.8.19/deps/jemalloc/test/integration/thread_arena.c
redis-2.8.19/deps/jemalloc/test/integration/thread_tcache_enabled.c
redis-2.8.19/deps/jemalloc/test/integration/xallocx.c
redis-2.8.19/deps/jemalloc/test/src/
redis-2.8.19/deps/jemalloc/test/src/SFMT.c
redis-2.8.19/deps/jemalloc/test/src/math.c
redis-2.8.19/deps/jemalloc/test/src/mtx.c
redis-2.8.19/deps/jemalloc/test/src/test.c
redis-2.8.19/deps/jemalloc/test/src/thd.c
redis-2.8.19/deps/jemalloc/test/test.sh.in
redis-2.8.19/deps/jemalloc/test/unit/
redis-2.8.19/deps/jemalloc/test/unit/SFMT.c
redis-2.8.19/deps/jemalloc/test/unit/bitmap.c
redis-2.8.19/deps/jemalloc/test/unit/ckh.c
redis-2.8.19/deps/jemalloc/test/unit/hash.c
redis-2.8.19/deps/jemalloc/test/unit/junk.c
redis-2.8.19/deps/jemalloc/test/unit/mallctl.c
redis-2.8.19/deps/jemalloc/test/unit/math.c
redis-2.8.19/deps/jemalloc/test/unit/mq.c
redis-2.8.19/deps/jemalloc/test/unit/mtx.c
redis-2.8.19/deps/jemalloc/test/unit/prof_accum.c
redis-2.8.19/deps/jemalloc/test/unit/prof_accum.h
redis-2.8.19/deps/jemalloc/test/unit/prof_accum_a.c
redis-2.8.19/deps/jemalloc/test/unit/prof_accum_b.c
redis-2.8.19/deps/jemalloc/test/unit/prof_gdump.c
redis-2.8.19/deps/jemalloc/test/unit/prof_idump.c
redis-2.8.19/deps/jemalloc/test/unit/ql.c
redis-2.8.19/deps/jemalloc/test/unit/qr.c
redis-2.8.19/deps/jemalloc/test/unit/quarantine.c
redis-2.8.19/deps/jemalloc/test/unit/rb.c
redis-2.8.19/deps/jemalloc/test/unit/rtree.c
redis-2.8.19/deps/jemalloc/test/unit/stats.c
redis-2.8.19/deps/jemalloc/test/unit/tsd.c
redis-2.8.19/deps/jemalloc/test/unit/util.c
redis-2.8.19/deps/jemalloc/test/unit/zero.c
redis-2.8.19/deps/linenoise/
redis-2.8.19/deps/linenoise/.gitignore
redis-2.8.19/deps/linenoise/Makefile
redis-2.8.19/deps/linenoise/README.markdown
redis-2.8.19/deps/linenoise/example.c
redis-2.8.19/deps/linenoise/linenoise.c
redis-2.8.19/deps/linenoise/linenoise.h
redis-2.8.19/deps/lua/
redis-2.8.19/deps/lua/COPYRIGHT
redis-2.8.19/deps/lua/HISTORY
redis-2.8.19/deps/lua/INSTALL
redis-2.8.19/deps/lua/Makefile
redis-2.8.19/deps/lua/README
redis-2.8.19/deps/lua/doc/
redis-2.8.19/deps/lua/doc/contents.html
redis-2.8.19/deps/lua/doc/cover.png
redis-2.8.19/deps/lua/doc/logo.gif
redis-2.8.19/deps/lua/doc/lua.1
redis-2.8.19/deps/lua/doc/lua.css
redis-2.8.19/deps/lua/doc/lua.html
redis-2.8.19/deps/lua/doc/luac.1
redis-2.8.19/deps/lua/doc/luac.html
redis-2.8.19/deps/lua/doc/manual.css
redis-2.8.19/deps/lua/doc/manual.html
redis-2.8.19/deps/lua/doc/readme.html
redis-2.8.19/deps/lua/etc/
redis-2.8.19/deps/lua/etc/Makefile
redis-2.8.19/deps/lua/etc/README
redis-2.8.19/deps/lua/etc/all.c
redis-2.8.19/deps/lua/etc/lua.hpp
redis-2.8.19/deps/lua/etc/lua.ico
redis-2.8.19/deps/lua/etc/lua.pc
redis-2.8.19/deps/lua/etc/luavs.bat
redis-2.8.19/deps/lua/etc/min.c
redis-2.8.19/deps/lua/etc/noparser.c
redis-2.8.19/deps/lua/etc/strict.lua
redis-2.8.19/deps/lua/src/
redis-2.8.19/deps/lua/src/Makefile
redis-2.8.19/deps/lua/src/fpconv.c
redis-2.8.19/deps/lua/src/fpconv.h
redis-2.8.19/deps/lua/src/lapi.c
redis-2.8.19/deps/lua/src/lapi.h
redis-2.8.19/deps/lua/src/lauxlib.c
redis-2.8.19/deps/lua/src/lauxlib.h
redis-2.8.19/deps/lua/src/lbaselib.c
redis-2.8.19/deps/lua/src/lcode.c
redis-2.8.19/deps/lua/src/lcode.h
redis-2.8.19/deps/lua/src/ldblib.c
redis-2.8.19/deps/lua/src/ldebug.c
redis-2.8.19/deps/lua/src/ldebug.h
redis-2.8.19/deps/lua/src/ldo.c
redis-2.8.19/deps/lua/src/ldo.h
redis-2.8.19/deps/lua/src/ldump.c
redis-2.8.19/deps/lua/src/lfunc.c
redis-2.8.19/deps/lua/src/lfunc.h
redis-2.8.19/deps/lua/src/lgc.c
redis-2.8.19/deps/lua/src/lgc.h
redis-2.8.19/deps/lua/src/linit.c
redis-2.8.19/deps/lua/src/liolib.c
redis-2.8.19/deps/lua/src/llex.c
redis-2.8.19/deps/lua/src/llex.h
redis-2.8.19/deps/lua/src/llimits.h
redis-2.8.19/deps/lua/src/lmathlib.c
redis-2.8.19/deps/lua/src/lmem.c
redis-2.8.19/deps/lua/src/lmem.h
redis-2.8.19/deps/lua/src/loadlib.c
redis-2.8.19/deps/lua/src/lobject.c
redis-2.8.19/deps/lua/src/lobject.h
redis-2.8.19/deps/lua/src/lopcodes.c
redis-2.8.19/deps/lua/src/lopcodes.h
redis-2.8.19/deps/lua/src/loslib.c
redis-2.8.19/deps/lua/src/lparser.c
redis-2.8.19/deps/lua/src/lparser.h
redis-2.8.19/deps/lua/src/lstate.c
redis-2.8.19/deps/lua/src/lstate.h
redis-2.8.19/deps/lua/src/lstring.c
redis-2.8.19/deps/lua/src/lstring.h
redis-2.8.19/deps/lua/src/lstrlib.c
redis-2.8.19/deps/lua/src/ltable.c
redis-2.8.19/deps/lua/src/ltable.h
redis-2.8.19/deps/lua/src/ltablib.c
redis-2.8.19/deps/lua/src/ltm.c
redis-2.8.19/deps/lua/src/ltm.h
redis-2.8.19/deps/lua/src/lua.c
redis-2.8.19/deps/lua/src/lua.h
redis-2.8.19/deps/lua/src/lua_bit.c
redis-2.8.19/deps/lua/src/lua_cjson.c
redis-2.8.19/deps/lua/src/lua_cmsgpack.c
redis-2.8.19/deps/lua/src/lua_struct.c
redis-2.8.19/deps/lua/src/luac.c
redis-2.8.19/deps/lua/src/luaconf.h
redis-2.8.19/deps/lua/src/lualib.h
redis-2.8.19/deps/lua/src/lundump.c
redis-2.8.19/deps/lua/src/lundump.h
redis-2.8.19/deps/lua/src/lvm.c
redis-2.8.19/deps/lua/src/lvm.h
redis-2.8.19/deps/lua/src/lzio.c
redis-2.8.19/deps/lua/src/lzio.h
redis-2.8.19/deps/lua/src/print.c
redis-2.8.19/deps/lua/src/strbuf.c
redis-2.8.19/deps/lua/src/strbuf.h
redis-2.8.19/deps/lua/test/
redis-2.8.19/deps/lua/test/README
redis-2.8.19/deps/lua/test/bisect.lua
redis-2.8.19/deps/lua/test/cf.lua
redis-2.8.19/deps/lua/test/echo.lua
redis-2.8.19/deps/lua/test/env.lua
redis-2.8.19/deps/lua/test/factorial.lua
redis-2.8.19/deps/lua/test/fib.lua
redis-2.8.19/deps/lua/test/fibfor.lua
redis-2.8.19/deps/lua/test/globals.lua
redis-2.8.19/deps/lua/test/hello.lua
redis-2.8.19/deps/lua/test/life.lua
redis-2.8.19/deps/lua/test/luac.lua
redis-2.8.19/deps/lua/test/printf.lua
redis-2.8.19/deps/lua/test/readonly.lua
redis-2.8.19/deps/lua/test/sieve.lua
redis-2.8.19/deps/lua/test/sort.lua
redis-2.8.19/deps/lua/test/table.lua
redis-2.8.19/deps/lua/test/trace-calls.lua
redis-2.8.19/deps/lua/test/trace-globals.lua
redis-2.8.19/deps/lua/test/xd.lua
redis-2.8.19/deps/update-jemalloc.sh
redis-2.8.19/redis.conf
redis-2.8.19/runtest
redis-2.8.19/runtest-sentinel
redis-2.8.19/sentinel.conf
redis-2.8.19/src/
redis-2.8.19/src/.gitignore
redis-2.8.19/src/Makefile
redis-2.8.19/src/Makefile.dep
redis-2.8.19/src/adlist.c
redis-2.8.19/src/adlist.h
redis-2.8.19/src/ae.c
redis-2.8.19/src/ae.h
redis-2.8.19/src/ae_epoll.c
redis-2.8.19/src/ae_evport.c
redis-2.8.19/src/ae_kqueue.c
redis-2.8.19/src/ae_select.c
redis-2.8.19/src/anet.c
redis-2.8.19/src/anet.h
redis-2.8.19/src/aof.c
redis-2.8.19/src/asciilogo.h
redis-2.8.19/src/bio.c
redis-2.8.19/src/bio.h
redis-2.8.19/src/bitops.c
redis-2.8.19/src/config.c
redis-2.8.19/src/config.h
redis-2.8.19/src/crc64.c
redis-2.8.19/src/crc64.h
redis-2.8.19/src/db.c
redis-2.8.19/src/debug.c
redis-2.8.19/src/dict.c
redis-2.8.19/src/dict.h
redis-2.8.19/src/endianconv.c
redis-2.8.19/src/endianconv.h
redis-2.8.19/src/fmacros.h
redis-2.8.19/src/help.h
redis-2.8.19/src/hyperloglog.c
redis-2.8.19/src/intset.c
redis-2.8.19/src/intset.h
redis-2.8.19/src/latency.c
redis-2.8.19/src/latency.h
redis-2.8.19/src/lzf.h
redis-2.8.19/src/lzfP.h
redis-2.8.19/src/lzf_c.c
redis-2.8.19/src/lzf_d.c
redis-2.8.19/src/memtest.c
redis-2.8.19/src/migrate.c
redis-2.8.19/src/mkreleasehdr.sh
redis-2.8.19/src/multi.c
redis-2.8.19/src/networking.c
redis-2.8.19/src/notify.c
redis-2.8.19/src/object.c
redis-2.8.19/src/pqsort.c
redis-2.8.19/src/pqsort.h
redis-2.8.19/src/pubsub.c
redis-2.8.19/src/rand.c
redis-2.8.19/src/rand.h
redis-2.8.19/src/rdb.c
redis-2.8.19/src/rdb.h
redis-2.8.19/src/redis-benchmark.c
redis-2.8.19/src/redis-check-aof.c
redis-2.8.19/src/redis-check-dump.c
redis-2.8.19/src/redis-cli.c
redis-2.8.19/src/redis.c
redis-2.8.19/src/redis.h
redis-2.8.19/src/redisassert.h
redis-2.8.19/src/release.c
redis-2.8.19/src/replication.c
redis-2.8.19/src/rio.c
redis-2.8.19/src/rio.h
redis-2.8.19/src/scripting.c
redis-2.8.19/src/sds.c
redis-2.8.19/src/sds.h
redis-2.8.19/src/sentinel.c
redis-2.8.19/src/setproctitle.c
redis-2.8.19/src/sha1.c
redis-2.8.19/src/sha1.h
redis-2.8.19/src/slowlog.c
redis-2.8.19/src/slowlog.h
redis-2.8.19/src/solarisfixes.h
redis-2.8.19/src/sort.c
redis-2.8.19/src/sparkline.c
redis-2.8.19/src/sparkline.h
redis-2.8.19/src/syncio.c
redis-2.8.19/src/t_hash.c
redis-2.8.19/src/t_list.c
redis-2.8.19/src/t_set.c
redis-2.8.19/src/t_string.c
redis-2.8.19/src/t_zset.c
redis-2.8.19/src/testhelp.h
redis-2.8.19/src/util.c
redis-2.8.19/src/util.h
redis-2.8.19/src/valgrind.sup
redis-2.8.19/src/version.h
redis-2.8.19/src/ziplist.c
redis-2.8.19/src/ziplist.h
redis-2.8.19/src/zipmap.c
redis-2.8.19/src/zipmap.h
redis-2.8.19/src/zmalloc.c
redis-2.8.19/src/zmalloc.h
redis-2.8.19/tests/
redis-2.8.19/tests/assets/
redis-2.8.19/tests/assets/default.conf
redis-2.8.19/tests/assets/encodings.rdb
redis-2.8.19/tests/assets/hash-zipmap.rdb
redis-2.8.19/tests/helpers/
redis-2.8.19/tests/helpers/bg_complex_data.tcl
redis-2.8.19/tests/helpers/gen_write_load.tcl
redis-2.8.19/tests/instances.tcl
redis-2.8.19/tests/integration/
redis-2.8.19/tests/integration/aof-race.tcl
redis-2.8.19/tests/integration/aof.tcl
redis-2.8.19/tests/integration/convert-zipmap-hash-on-load.tcl
redis-2.8.19/tests/integration/rdb.tcl
redis-2.8.19/tests/integration/redis-cli.tcl
redis-2.8.19/tests/integration/replication-2.tcl
redis-2.8.19/tests/integration/replication-3.tcl
redis-2.8.19/tests/integration/replication-4.tcl
redis-2.8.19/tests/integration/replication-psync.tcl
redis-2.8.19/tests/integration/replication.tcl
redis-2.8.19/tests/sentinel/
redis-2.8.19/tests/sentinel/run.tcl
redis-2.8.19/tests/sentinel/tests/
redis-2.8.19/tests/sentinel/tests/00-base.tcl
redis-2.8.19/tests/sentinel/tests/01-conf-update.tcl
redis-2.8.19/tests/sentinel/tests/02-slaves-reconf.tcl
redis-2.8.19/tests/sentinel/tests/03-runtime-reconf.tcl
redis-2.8.19/tests/sentinel/tests/04-slave-selection.tcl
redis-2.8.19/tests/sentinel/tests/05-manual.tcl
redis-2.8.19/tests/sentinel/tests/includes/
redis-2.8.19/tests/sentinel/tests/includes/init-tests.tcl
redis-2.8.19/tests/sentinel/tmp/
redis-2.8.19/tests/sentinel/tmp/.gitignore
redis-2.8.19/tests/support/
redis-2.8.19/tests/support/redis.tcl
redis-2.8.19/tests/support/server.tcl
redis-2.8.19/tests/support/test.tcl
redis-2.8.19/tests/support/tmpfile.tcl
redis-2.8.19/tests/support/util.tcl
redis-2.8.19/tests/test_helper.tcl
redis-2.8.19/tests/tmp/
redis-2.8.19/tests/tmp/.gitignore
redis-2.8.19/tests/unit/
redis-2.8.19/tests/unit/aofrw.tcl
redis-2.8.19/tests/unit/auth.tcl
redis-2.8.19/tests/unit/basic.tcl
redis-2.8.19/tests/unit/bitops.tcl
redis-2.8.19/tests/unit/dump.tcl
redis-2.8.19/tests/unit/expire.tcl
redis-2.8.19/tests/unit/hyperloglog.tcl
redis-2.8.19/tests/unit/introspection.tcl
redis-2.8.19/tests/unit/latency-monitor.tcl
redis-2.8.19/tests/unit/limits.tcl
redis-2.8.19/tests/unit/maxmemory.tcl
redis-2.8.19/tests/unit/memefficiency.tcl
redis-2.8.19/tests/unit/multi.tcl
redis-2.8.19/tests/unit/obuf-limits.tcl
redis-2.8.19/tests/unit/other.tcl
redis-2.8.19/tests/unit/printver.tcl
redis-2.8.19/tests/unit/protocol.tcl
redis-2.8.19/tests/unit/pubsub.tcl
redis-2.8.19/tests/unit/quit.tcl
redis-2.8.19/tests/unit/scan.tcl
redis-2.8.19/tests/unit/scripting.tcl
redis-2.8.19/tests/unit/slowlog.tcl
redis-2.8.19/tests/unit/sort.tcl
redis-2.8.19/tests/unit/type/
redis-2.8.19/tests/unit/type/hash.tcl
redis-2.8.19/tests/unit/type/list-2.tcl
redis-2.8.19/tests/unit/type/list-3.tcl
redis-2.8.19/tests/unit/type/list-common.tcl
redis-2.8.19/tests/unit/type/list.tcl
redis-2.8.19/tests/unit/type/set.tcl
redis-2.8.19/tests/unit/type/zset.tcl
redis-2.8.19/utils/
redis-2.8.19/utils/build-static-symbols.tcl
redis-2.8.19/utils/generate-command-help.rb
redis-2.8.19/utils/hyperloglog/
redis-2.8.19/utils/hyperloglog/.gitignore
redis-2.8.19/utils/hyperloglog/hll-err.rb
redis-2.8.19/utils/hyperloglog/hll-gnuplot-graph.rb
redis-2.8.19/utils/install_server.sh
redis-2.8.19/utils/mkrelease.sh
redis-2.8.19/utils/redis-copy.rb
redis-2.8.19/utils/redis-sha1.rb
redis-2.8.19/utils/redis_init_script
redis-2.8.19/utils/redis_init_script.tpl
redis-2.8.19/utils/speed-regression.tcl
redis-2.8.19/utils/whatisdoing.sh
pi@raspberrypi ~ $ cd redis-2.8.19/
pi@raspberrypi ~/redis-2.8.19 $ ls -alrt
합계 148
drwxr-xr-x 3 pi pi 4096 12월 16 17:18 utils
drwxr-xr-x 9 pi pi 4096 12월 16 17:18 tests
drwxr-xr-x 2 pi pi 4096 12월 16 17:18 src
-rw-r--r-- 1 pi pi 7109 12월 16 17:18 sentinel.conf
-rwxr-xr-x 1 pi pi 281 12월 16 17:18 runtest-sentinel
-rwxr-xr-x 1 pi pi 271 12월 16 17:18 runtest
-rw-r--r-- 1 pi pi 36141 12월 16 17:18 redis.conf
drwxr-xr-x 6 pi pi 4096 12월 16 17:18 deps
-rw-r--r-- 1 pi pi 4404 12월 16 17:18 README
-rw-r--r-- 1 pi pi 151 12월 16 17:18 Makefile
-rw-r--r-- 1 pi pi 4223 12월 16 17:18 MANIFESTO
-rw-r--r-- 1 pi pi 11 12월 16 17:18 INSTALL
-rw-r--r-- 1 pi pi 1487 12월 16 17:18 COPYING
-rw-r--r-- 1 pi pi 1439 12월 16 17:18 CONTRIBUTING
-rw-r--r-- 1 pi pi 53 12월 16 17:18 BUGS
-rw-r--r-- 1 pi pi 30972 12월 16 17:18 00-RELEASENOTES
-rw-r--r-- 1 pi pi 332 12월 16 17:18 .gitignore
drwxr-xr-x 6 pi pi 4096 12월 16 17:18 .
drwxr-xr-x 11 pi pi 4096 3월 26 22:04 ..
pi@raspberrypi ~/redis-2.8.19 $ make
cd src && make all
make[1]: Entering directory '/home/pi/redis-2.8.19/src'
rm -rf redis-server redis-sentinel redis-cli redis-benchmark redis-check-dump redis-check-aof *.o *.gcda *.gcno *.gcov redis.info lcov-html
(cd ../deps && make distclean)
make[2]: Entering directory '/home/pi/redis-2.8.19/deps'
(cd hiredis && make clean) > /dev/null || true
(cd linenoise && make clean) > /dev/null || true
(cd lua && make clean) > /dev/null || true
(cd jemalloc && [ -f Makefile ] && make distclean) > /dev/null || true
(rm -f .make-*)
make[2]: Leaving directory '/home/pi/redis-2.8.19/deps'
(rm -f .make-*)
echo STD=-std=c99 -pedantic >> .make-settings
echo WARN=-Wall -W >> .make-settings
echo OPT=-O2 >> .make-settings
echo MALLOC=jemalloc >> .make-settings
echo CFLAGS= >> .make-settings
echo LDFLAGS= >> .make-settings
echo REDIS_CFLAGS= >> .make-settings
echo REDIS_LDFLAGS= >> .make-settings
echo PREV_FINAL_CFLAGS=-std=c99 -pedantic -Wall -W -O2 -g -ggdb -I../deps/hiredis -I../deps/linenoise -I../deps/lua/src -DUSE_JEMALLOC -I../deps/jemalloc/include >> .make-settings
echo PREV_FINAL_LDFLAGS= -g -ggdb -rdynamic >> .make-settings
(cd ../deps && make hiredis linenoise lua jemalloc)
make[2]: Entering directory '/home/pi/redis-2.8.19/deps'
(cd hiredis && make clean) > /dev/null || true
(cd linenoise && make clean) > /dev/null || true
(cd lua && make clean) > /dev/null || true
(cd jemalloc && [ -f Makefile ] && make distclean) > /dev/null || true
(rm -f .make-*)
(echo "" > .make-cflags)
(echo "" > .make-ldflags)
MAKE hiredis
cd hiredis && make static
make[3]: Entering directory '/home/pi/redis-2.8.19/deps/hiredis'
cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb net.c
cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb hiredis.c
cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb sds.c
cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb async.c
ar rcs libhiredis.a net.o hiredis.o sds.o async.o
make[3]: Leaving directory '/home/pi/redis-2.8.19/deps/hiredis'
MAKE linenoise
cd linenoise && make
make[3]: Entering directory '/home/pi/redis-2.8.19/deps/linenoise'
cc -Wall -Os -g -c linenoise.c
make[3]: Leaving directory '/home/pi/redis-2.8.19/deps/linenoise'
MAKE lua
cd lua/src && make all CFLAGS="-O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL " MYLDFLAGS="" AR="ar rcu"
make[3]: Entering directory '/home/pi/redis-2.8.19/deps/lua/src'
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lapi.o lapi.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lcode.o lcode.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o ldebug.o ldebug.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o ldo.o ldo.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o ldump.o ldump.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lfunc.o lfunc.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lgc.o lgc.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o llex.o llex.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lmem.o lmem.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lobject.o lobject.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lopcodes.o lopcodes.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lparser.o lparser.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lstate.o lstate.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lstring.o lstring.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o ltable.o ltable.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o ltm.o ltm.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lundump.o lundump.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lvm.o lvm.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lzio.o lzio.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o strbuf.o strbuf.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o fpconv.o fpconv.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lauxlib.o lauxlib.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lbaselib.o lbaselib.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o ldblib.o ldblib.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o liolib.o liolib.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lmathlib.o lmathlib.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o loslib.o loslib.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o ltablib.o ltablib.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lstrlib.o lstrlib.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o loadlib.o loadlib.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o linit.o linit.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lua_cjson.o lua_cjson.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lua_struct.o lua_struct.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lua_cmsgpack.o lua_cmsgpack.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lua_bit.o lua_bit.c
ar rcu liblua.a lapi.o lcode.o ldebug.o ldo.o ldump.o lfunc.o lgc.o llex.o lmem.o lobject.o lopcodes.o lparser.o lstate.o lstring.o ltable.o ltm.o lundump.o lvm.o lzio.o strbuf.o fpconv.o lauxlib.o lbaselib.o ldblib.o liolib.o lmathlib.o loslib.o ltablib.o lstrlib.o loadlib.o linit.o lua_cjson.o lua_struct.o lua_cmsgpack.o lua_bit.o # DLL needs all object files
ranlib liblua.a
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o lua.o lua.c
cc -o lua lua.o liblua.a -lm
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o luac.o luac.c
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -c -o print.o print.c
cc -o luac luac.o print.o liblua.a -lm
make[3]: Leaving directory '/home/pi/redis-2.8.19/deps/lua/src'
MAKE jemalloc
cd jemalloc && ./configure --with-jemalloc-prefix=je_ --enable-cc-silence CFLAGS="-std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops " LDFLAGS=""
checking for xsltproc... false
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking whether byte ordering is bigendian... no
checking size of void *... 4
checking size of int... 4
checking size of long... 4
checking size of intmax_t... 8
checking build system type... armv7l-unknown-linux-gnueabihf
checking host system type... armv7l-unknown-linux-gnueabihf
checking for ar... ar
checking whether __attribute__ syntax is compilable... yes
checking whether compiler supports -fvisibility=hidden... yes
checking whether compiler supports -Werror... yes
checking whether tls_model attribute is compilable... no
checking for a BSD-compatible install... /usr/bin/install -c
checking for ranlib... ranlib
checking for ld... /usr/bin/ld
checking for autoconf... false
checking for memalign... yes
checking for valloc... yes
checking configured backtracing method... N/A
checking for sbrk... yes
checking whether utrace(2) is compilable... no
checking whether valgrind is compilable... no
checking STATIC_PAGE_SHIFT... 12
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking for pthread_create in -lpthread... yes
checking for _malloc_thread_cleanup... no
checking for _pthread_mutex_init_calloc_cb... no
checking for TLS... yes
checking whether a program using ffsl is compilable... yes
checking whether atomic(9) is compilable... no
checking whether Darwin OSAtomic*() is compilable... no
checking whether to force 32-bit __sync_{add,sub}_and_fetch()... no
checking whether to force 64-bit __sync_{add,sub}_and_fetch()... no
checking whether Darwin OSSpin*() is compilable... no
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating doc/html.xsl
config.status: creating doc/manpages.xsl
config.status: creating doc/jemalloc.xml
config.status: creating include/jemalloc/jemalloc_macros.h
config.status: creating include/jemalloc/jemalloc_protos.h
config.status: creating include/jemalloc/internal/jemalloc_internal.h
config.status: creating test/test.sh
config.status: creating test/include/test/jemalloc_test.h
config.status: creating config.stamp
config.status: creating bin/jemalloc.sh
config.status: creating include/jemalloc/jemalloc_defs.h
config.status: creating include/jemalloc/internal/jemalloc_internal_defs.h
config.status: creating test/include/test/jemalloc_test_defs.h
config.status: executing include/jemalloc/internal/private_namespace.h commands
config.status: executing include/jemalloc/internal/private_unnamespace.h commands
config.status: executing include/jemalloc/internal/public_symbols.txt commands
config.status: executing include/jemalloc/internal/public_namespace.h commands
config.status: executing include/jemalloc/internal/public_unnamespace.h commands
config.status: executing include/jemalloc/internal/size_classes.h commands
config.status: executing include/jemalloc/jemalloc_protos_jet.h commands
config.status: executing include/jemalloc/jemalloc_rename.h commands
config.status: executing include/jemalloc/jemalloc_mangle.h commands
config.status: executing include/jemalloc/jemalloc_mangle_jet.h commands
config.status: executing include/jemalloc/jemalloc.h commands
===============================================================================
jemalloc version : 3.6.0-0-g46c0af68bd248b04df75e4f92d5fb804c3d75340
library revision : 1
CC : gcc
CPPFLAGS : -D_GNU_SOURCE -D_REENTRANT
CFLAGS : -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -fvisibility=hidden
LDFLAGS :
EXTRA_LDFLAGS :
LIBS : -lpthread
RPATH_EXTRA :
XSLTPROC : false
XSLROOT :
PREFIX : /usr/local
BINDIR : /usr/local/bin
INCLUDEDIR : /usr/local/include
LIBDIR : /usr/local/lib
DATADIR : /usr/local/share
MANDIR : /usr/local/share/man
srcroot :
abs_srcroot : /home/pi/redis-2.8.19/deps/jemalloc/
objroot :
abs_objroot : /home/pi/redis-2.8.19/deps/jemalloc/
JEMALLOC_PREFIX : je_
JEMALLOC_PRIVATE_NAMESPACE
: je_
install_suffix :
autogen : 0
experimental : 1
cc-silence : 1
debug : 0
code-coverage : 0
stats : 1
prof : 0
prof-libunwind : 0
prof-libgcc : 0
prof-gcc : 0
tcache : 1
fill : 1
utrace : 0
valgrind : 0
xmalloc : 0
mremap : 0
munmap : 0
dss : 0
lazy_lock : 0
tls : 1
===============================================================================
cd jemalloc && make CFLAGS="-std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops " LDFLAGS="" lib/libjemalloc.a
make[3]: Entering directory '/home/pi/redis-2.8.19/deps/jemalloc'
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/jemalloc.o src/jemalloc.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/arena.o src/arena.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/atomic.o src/atomic.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/base.o src/base.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/bitmap.o src/bitmap.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/chunk.o src/chunk.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/chunk_dss.o src/chunk_dss.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/chunk_mmap.o src/chunk_mmap.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/ckh.o src/ckh.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/ctl.o src/ctl.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/extent.o src/extent.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/hash.o src/hash.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/huge.o src/huge.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/mb.o src/mb.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/mutex.o src/mutex.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/prof.o src/prof.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/quarantine.o src/quarantine.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/rtree.o src/rtree.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/stats.o src/stats.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/tcache.o src/tcache.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/util.o src/util.c
gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/tsd.o src/tsd.c
ar crus lib/libjemalloc.a src/jemalloc.o src/arena.o src/atomic.o src/base.o src/bitmap.o src/chunk.o src/chunk_dss.o src/chunk_mmap.o src/ckh.o src/ctl.o src/extent.o src/hash.o src/huge.o src/mb.o src/mutex.o src/prof.o src/quarantine.o src/rtree.o src/stats.o src/tcache.o src/util.o src/tsd.o
make[3]: Leaving directory '/home/pi/redis-2.8.19/deps/jemalloc'
make[2]: Leaving directory '/home/pi/redis-2.8.19/deps'
CC adlist.o
CC ae.o
CC anet.o
CC dict.o
CC redis.o
CC sds.o
CC zmalloc.o
CC lzf_c.o
CC lzf_d.o
CC pqsort.o
CC zipmap.o
CC sha1.o
CC ziplist.o
CC release.o
CC networking.o
CC util.o
CC object.o
CC db.o
CC replication.o
CC rdb.o
CC t_string.o
CC t_list.o
CC t_set.o
CC t_zset.o
CC t_hash.o
CC config.o
CC aof.o
CC pubsub.o
CC multi.o
CC debug.o
debug.c: In function ‘getMcontextEip’:
debug.c:515:1: warning: no return statement in function returning non-void [-Wreturn-type]
debug.c:486:41: warning: unused parameter ‘uc’ [-Wunused-parameter]
debug.c: In function ‘logRegisters’:
debug.c:530:31: warning: unused parameter ‘uc’ [-Wunused-parameter]
CC sort.o
CC intset.o
CC syncio.o
CC migrate.o
CC endianconv.o
CC slowlog.o
CC scripting.o
CC bio.o
CC rio.o
CC rand.o
CC memtest.o
CC crc64.o
CC bitops.o
CC sentinel.o
CC notify.o
CC setproctitle.o
CC hyperloglog.o
CC latency.o
CC sparkline.o
LINK redis-server
INSTALL redis-sentinel
CC redis-cli.o
LINK redis-cli
CC redis-benchmark.o
LINK redis-benchmark
CC redis-check-dump.o
LINK redis-check-dump
CC redis-check-aof.o
LINK redis-check-aof
Hint: It's a good idea to run 'make test' ;)
make[1]: Leaving directory '/home/pi/redis-2.8.19/src'
pi@raspberrypi ~/redis-2.8.19 $ make test
cd src && make test
make[1]: Entering directory '/home/pi/redis-2.8.19/src'
** SLOW COMPUTER ** Using a single client to avoid false positives.
Cleanup: may take some time... OK
Starting test server at port 11111
[ready]: 6773
Testing unit/printver
Testing Redis version 2.8.19 (00000000)
[1/36 done]: unit/printver (0 seconds)
Testing unit/auth
[ok]: AUTH fails if there is no password configured server side
[ok]: AUTH fails when a wrong password is given
[ok]: Arbitrary command gives an error when AUTH is required
[ok]: AUTH succeeds when the right password is given
[ok]: Once AUTH succeeded we can actually send commands to the server
[2/36 done]: unit/auth (1 seconds)
Testing unit/protocol
[ok]: Handle an empty query
[ok]: Negative multibulk length
[ok]: Out of range multibulk length
[ok]: Wrong multibulk payload header
[ok]: Negative multibulk payload length
[ok]: Out of range multibulk payload length
[ok]: Non-number multibulk payload length
[ok]: Multi bulk request not followed by bulk arguments
[ok]: Generic wrong number of args
[ok]: Unbalanced number of quotes
[ok]: Protocol desync regression test #1
[ok]: Protocol desync regression test #2
[ok]: Protocol desync regression test #3
[ok]: Regression for a crash with blocking ops and pipelining
[3/36 done]: unit/protocol (3 seconds)
Testing unit/basic
[ok]: DEL all keys to start with a clean DB
[ok]: SET and GET an item
[ok]: SET and GET an empty item
[ok]: DEL against a single item
[ok]: Vararg DEL
[ok]: KEYS with pattern
[ok]: KEYS to get all keys
[ok]: DBSIZE
[ok]: DEL all keys
[ok]: Very big payload in GET/SET
[ok]: Very big payload random access
[ok]: SET 10000 numeric keys and access all them in reverse order
[ok]: DBSIZE should be 10101 now
[ok]: INCR against non existing key
[ok]: INCR against key created by incr itself
[ok]: INCR against key originally set with SET
[ok]: INCR over 32bit value
[ok]: INCRBY over 32bit value with over 32bit increment
[ok]: INCR fails against key with spaces (left)
[ok]: INCR fails against key with spaces (right)
[ok]: INCR fails against key with spaces (both)
[ok]: INCR fails against a key holding a list
[ok]: DECRBY over 32bit value with over 32bit increment, negative res
[ok]: INCRBYFLOAT against non existing key
[ok]: INCRBYFLOAT against key originally set with SET
[ok]: INCRBYFLOAT over 32bit value
[ok]: INCRBYFLOAT over 32bit value with over 32bit increment
[ok]: INCRBYFLOAT fails against key with spaces (left)
[ok]: INCRBYFLOAT fails against key with spaces (right)
[ok]: INCRBYFLOAT fails against key with spaces (both)
[ok]: INCRBYFLOAT fails against a key holding a list
[ok]: INCRBYFLOAT does not allow NaN or Infinity
[ok]: INCRBYFLOAT decrement
[ok]: SETNX target key missing
[ok]: SETNX target key exists
[ok]: SETNX against not-expired volatile key
[ok]: SETNX against expired volatile key
[ok]: DEL against expired key
[ok]: EXISTS
[ok]: Zero length value in key. SET/GET/EXISTS
[ok]: Commands pipelining
[ok]: Non existing command
[ok]: RENAME basic usage
[ok]: RENAME source key should no longer exist
[ok]: RENAME against already existing key
[ok]: RENAMENX basic usage
[ok]: RENAMENX against already existing key
[ok]: RENAMENX against already existing key (2)
[ok]: RENAME against non existing source key
[ok]: RENAME where source and dest key is the same
[ok]: RENAME with volatile key, should move the TTL as well
[ok]: RENAME with volatile key, should not inherit TTL of target key
[ok]: DEL all keys again (DB 0)
[ok]: DEL all keys again (DB 1)
[ok]: MOVE basic usage
[ok]: MOVE against key existing in the target DB
[ok]: MOVE against non-integer DB (#1428)
[ok]: SET/GET keys in different DBs
[ok]: MGET
[ok]: MGET against non existing key
[ok]: MGET against non-string key
[ok]: RANDOMKEY
[ok]: RANDOMKEY against empty DB
[ok]: RANDOMKEY regression 1
[ok]: GETSET (set new value)
[ok]: GETSET (replace old value)
[ok]: MSET base case
[ok]: MSET wrong number of args
[ok]: MSETNX with already existent key
[ok]: MSETNX with not existing keys
[ok]: STRLEN against non-existing key
[ok]: STRLEN against integer-encoded value
[ok]: STRLEN against plain string
[ok]: SETBIT against non-existing key
[ok]: SETBIT against string-encoded key
[ok]: SETBIT against integer-encoded key
[ok]: SETBIT against key with wrong type
[ok]: SETBIT with out of range bit offset
[ok]: SETBIT with non-bit argument
[ok]: SETBIT fuzzing
[ok]: GETBIT against non-existing key
[ok]: GETBIT against string-encoded key
[ok]: GETBIT against integer-encoded key
[ok]: SETRANGE against non-existing key
[ok]: SETRANGE against string-encoded key
[ok]: SETRANGE against integer-encoded key
[ok]: SETRANGE against key with wrong type
[ok]: SETRANGE with out of range offset
[ok]: GETRANGE against non-existing key
[ok]: GETRANGE against string value
[ok]: GETRANGE against integer-encoded value
[ok]: GETRANGE fuzzing
[ok]: Extended SET can detect syntax errors
[ok]: Extended SET NX option
[ok]: Extended SET XX option
[ok]: Extended SET EX option
[ok]: Extended SET PX option
[ok]: Extended SET using multiple options at once
[ok]: KEYS * two times with long key, Github issue #1208
[ok]: GETRANGE with huge ranges, Github issue #1844
[4/36 done]: unit/basic (55 seconds)
Testing unit/scan
[ok]: SCAN basic
[ok]: SCAN COUNT
[ok]: SCAN MATCH
[ok]: SSCAN with encoding intset
[ok]: SSCAN with encoding hashtable
[ok]: HSCAN with encoding ziplist
[ok]: HSCAN with encoding hashtable
[ok]: ZSCAN with encoding ziplist
[ok]: ZSCAN with encoding skiplist
[ok]: SCAN guarantees check under write load
[ok]: SSCAN with integer encoded object (issue #1345)
[ok]: SSCAN with PATTERN
[ok]: HSCAN with PATTERN
[ok]: ZSCAN with PATTERN
[ok]: ZSCAN scores: regression test for issue #2175
[5/36 done]: unit/scan (2 seconds)
Testing unit/type/list
[ok]: LPUSH, RPUSH, LLENGTH, LINDEX, LPOP - ziplist
[ok]: LPUSH, RPUSH, LLENGTH, LINDEX, LPOP - regular list
[ok]: R/LPOP against empty list
[ok]: Variadic RPUSH/LPUSH
[ok]: DEL a list - ziplist
[ok]: DEL a list - regular list
[ok]: BLPOP, BRPOP: single existing list - linkedlist
[ok]: BLPOP, BRPOP: multiple existing lists - linkedlist
[ok]: BLPOP, BRPOP: second list has an entry - linkedlist
[ok]: BRPOPLPUSH - linkedlist
[ok]: BLPOP, BRPOP: single existing list - ziplist
[ok]: BLPOP, BRPOP: multiple existing lists - ziplist
[ok]: BLPOP, BRPOP: second list has an entry - ziplist
[ok]: BRPOPLPUSH - ziplist
[ok]: BLPOP, LPUSH + DEL should not awake blocked client
[ok]: BLPOP, LPUSH + DEL + SET should not awake blocked client
[ok]: BLPOP with same key multiple times should work (issue #801)
[ok]: MULTI/EXEC is isolated from the point of view of BLPOP
[ok]: BLPOP with variadic LPUSH
[ok]: BRPOPLPUSH with zero timeout should block indefinitely
[ok]: BRPOPLPUSH with a client BLPOPing the target list
[ok]: BRPOPLPUSH with wrong source type
[ok]: BRPOPLPUSH with wrong destination type
[ok]: BRPOPLPUSH maintains order of elements after failure
[ok]: BRPOPLPUSH with multiple blocked clients
[ok]: Linked BRPOPLPUSH
[ok]: Circular BRPOPLPUSH
[ok]: Self-referential BRPOPLPUSH
[ok]: BRPOPLPUSH inside a transaction
[ok]: PUSH resulting from BRPOPLPUSH affect WATCH
[ok]: BRPOPLPUSH does not affect WATCH while still blocked
[ok]: BRPOPLPUSH timeout
[ok]: BLPOP when new key is moved into place
[ok]: BLPOP when result key is created by SORT..STORE
[ok]: BLPOP: with single empty list argument
[ok]: BLPOP: with negative timeout
[ok]: BLPOP: with non-integer timeout
[ok]: BLPOP: with zero timeout should block indefinitely
[ok]: BLPOP: second argument is not a list
[ok]: BLPOP: timeout
[ok]: BLPOP: arguments are empty
[ok]: BRPOP: with single empty list argument
[ok]: BRPOP: with negative timeout
[ok]: BRPOP: with non-integer timeout
[ok]: BRPOP: with zero timeout should block indefinitely
[ok]: BRPOP: second argument is not a list
[ok]: BRPOP: timeout
[ok]: BRPOP: arguments are empty
[ok]: BLPOP inside a transaction
[ok]: LPUSHX, RPUSHX - generic
[ok]: LPUSHX, RPUSHX - linkedlist
[ok]: LINSERT - linkedlist
[ok]: LPUSHX, RPUSHX - ziplist
[ok]: LINSERT - ziplist
[ok]: LINSERT raise error on bad syntax
[ok]: LPUSHX, RPUSHX convert from ziplist to list
[ok]: LINSERT convert from ziplist to list
[ok]: LINDEX consistency test - ziplist
[ok]: LINDEX random access - ziplist
[ok]: Check if list is still ok after a DEBUG RELOAD - ziplist
[ok]: LINDEX consistency test - linkedlist
[ok]: LINDEX random access - linkedlist
[ok]: Check if list is still ok after a DEBUG RELOAD - linkedlist
[ok]: LLEN against non-list value error
[ok]: LLEN against non existing key
[ok]: LINDEX against non-list value error
[ok]: LINDEX against non existing key
[ok]: LPUSH against non-list value error
[ok]: RPUSH against non-list value error
[ok]: RPOPLPUSH base case - linkedlist
[ok]: RPOPLPUSH with the same list as src and dst - linkedlist
[ok]: RPOPLPUSH with linkedlist source and existing target linkedlist
[ok]: RPOPLPUSH with linkedlist source and existing target ziplist
[ok]: RPOPLPUSH base case - ziplist
[ok]: RPOPLPUSH with the same list as src and dst - ziplist
[ok]: RPOPLPUSH with ziplist source and existing target linkedlist
[ok]: RPOPLPUSH with ziplist source and existing target ziplist
[ok]: RPOPLPUSH against non existing key
[ok]: RPOPLPUSH against non list src key
[ok]: RPOPLPUSH against non list dst key
[ok]: RPOPLPUSH against non existing src key
[ok]: Basic LPOP/RPOP - linkedlist
[ok]: Basic LPOP/RPOP - ziplist
[ok]: LPOP/RPOP against non list value
[ok]: Mass RPOP/LPOP - ziplist
[ok]: Mass RPOP/LPOP - linkedlist
[ok]: LRANGE basics - linkedlist
[ok]: LRANGE inverted indexes - linkedlist
[ok]: LRANGE out of range indexes including the full list - linkedlist
[ok]: LRANGE out of range negative end index - linkedlist
[ok]: LRANGE basics - ziplist
[ok]: LRANGE inverted indexes - ziplist
[ok]: LRANGE out of range indexes including the full list - ziplist
[ok]: LRANGE out of range negative end index - ziplist
[ok]: LRANGE against non existing key
[ok]: LTRIM basics - linkedlist
[ok]: LTRIM out of range negative end index - linkedlist
[ok]: LTRIM basics - ziplist
[ok]: LTRIM out of range negative end index - ziplist
[ok]: LSET - linkedlist
[ok]: LSET out of range index - linkedlist
[ok]: LSET - ziplist
[ok]: LSET out of range index - ziplist
[ok]: LSET against non existing key
[ok]: LSET against non list value
[ok]: LREM remove all the occurrences - linkedlist
[ok]: LREM remove the first occurrence - linkedlist
[ok]: LREM remove non existing element - linkedlist
[ok]: LREM starting from tail with negative count - linkedlist
[ok]: LREM starting from tail with negative count (2) - linkedlist
[ok]: LREM deleting objects that may be int encoded - linkedlist
[ok]: LREM remove all the occurrences - ziplist
[ok]: LREM remove the first occurrence - ziplist
[ok]: LREM remove non existing element - ziplist
[ok]: LREM starting from tail with negative count - ziplist
[ok]: LREM starting from tail with negative count (2) - ziplist
[ok]: LREM deleting objects that may be int encoded - ziplist
[ok]: Regression for bug 593 - chaining BRPOPLPUSH with other blocking cmds
[6/36 done]: unit/type/list (16 seconds)
Testing unit/type/list-2
[ok]: LTRIM stress testing - linkedlist
[ok]: LTRIM stress testing - ziplist
[7/36 done]: unit/type/list-2 (22 seconds)
Testing unit/type/list-3
[ok]: Explicit regression for a list bug
[ok]: ziplist implementation: value encoding and backlink
[ok]: ziplist implementation: encoding stress testing
[8/36 done]: unit/type/list-3 (64 seconds)
Testing unit/type/set
[ok]: SADD, SCARD, SISMEMBER, SMEMBERS basics - regular set
[ok]: SADD, SCARD, SISMEMBER, SMEMBERS basics - intset
[ok]: SADD against non set
[ok]: SADD a non-integer against an intset
[ok]: SADD an integer larger than 64 bits
[ok]: SADD overflows the maximum allowed integers in an intset
[ok]: Variadic SADD
[ok]: Set encoding after DEBUG RELOAD
[ok]: SREM basics - regular set
[ok]: SREM basics - intset
[ok]: SREM with multiple arguments
[ok]: SREM variadic version with more args needed to destroy the key
[ok]: Generated sets must be encoded as hashtable
[ok]: SINTER with two sets - hashtable
[ok]: SINTERSTORE with two sets - hashtable
[ok]: SINTERSTORE with two sets, after a DEBUG RELOAD - hashtable
[ok]: SUNION with two sets - hashtable
[ok]: SUNIONSTORE with two sets - hashtable
[ok]: SINTER against three sets - hashtable
[ok]: SINTERSTORE with three sets - hashtable
[ok]: SUNION with non existing keys - hashtable
[ok]: SDIFF with two sets - hashtable
[ok]: SDIFF with three sets - hashtable
[ok]: SDIFFSTORE with three sets - hashtable
[ok]: Generated sets must be encoded as intset
[ok]: SINTER with two sets - intset
[ok]: SINTERSTORE with two sets - intset
[ok]: SINTERSTORE with two sets, after a DEBUG RELOAD - intset
[ok]: SUNION with two sets - intset
[ok]: SUNIONSTORE with two sets - intset
[ok]: SINTER against three sets - intset
[ok]: SINTERSTORE with three sets - intset
[ok]: SUNION with non existing keys - intset
[ok]: SDIFF with two sets - intset
[ok]: SDIFF with three sets - intset
[ok]: SDIFFSTORE with three sets - intset
[ok]: SDIFF with first set empty
[ok]: SDIFF with same set two times
[ok]: SDIFF fuzzing
[ok]: SINTER against non-set should throw error
[ok]: SUNION against non-set should throw error
[ok]: SINTER should handle non existing key as empty
[ok]: SINTER with same integer elements but different encoding
[ok]: SINTERSTORE against non existing keys should delete dstkey
[ok]: SUNIONSTORE against non existing keys should delete dstkey
[ok]: SPOP basics - hashtable
[ok]: SRANDMEMBER - hashtable
[ok]: SPOP basics - intset
[ok]: SRANDMEMBER - intset
[ok]: SRANDMEMBER with <count> against non existing key
[ok]: SRANDMEMBER with <count> - hashtable
[ok]: SRANDMEMBER with <count> - intset
[ok]: SMOVE basics - from regular set to intset
[ok]: SMOVE basics - from intset to regular set
[ok]: SMOVE non existing key
[ok]: SMOVE non existing src set
[ok]: SMOVE from regular set to non existing destination set
[ok]: SMOVE from intset to non existing destination set
[ok]: SMOVE wrong src key type
[ok]: SMOVE wrong dst key type
[ok]: SMOVE with identical source and destination
[ok]: intsets implementation stress testing
[9/36 done]: unit/type/set (38 seconds)
Testing unit/type/zset
[ok]: Check encoding - ziplist
[ok]: ZSET basic ZADD and score update - ziplist
[ok]: ZSET element can't be set to NaN with ZADD - ziplist
[ok]: ZSET element can't be set to NaN with ZINCRBY
[ok]: ZINCRBY calls leading to NaN result in error
[ok]: ZADD - Variadic version base case
[ok]: ZADD - Return value is the number of actually added items
[ok]: ZADD - Variadic version does not add nothing on single parsing err
[ok]: ZADD - Variadic version will raise error on missing arg
[ok]: ZINCRBY does not work variadic even if shares ZADD implementation
[ok]: ZCARD basics - ziplist
[ok]: ZREM removes key after last element is removed
[ok]: ZREM variadic version
[ok]: ZREM variadic version -- remove elements after key deletion
[ok]: ZRANGE basics - ziplist
[ok]: ZREVRANGE basics - ziplist
[ok]: ZRANK/ZREVRANK basics - ziplist
[ok]: ZRANK - after deletion - ziplist
[ok]: ZINCRBY - can create a new sorted set - ziplist
[ok]: ZINCRBY - increment and decrement - ziplist
[ok]: ZRANGEBYSCORE/ZREVRANGEBYSCORE/ZCOUNT basics
[ok]: ZRANGEBYSCORE with WITHSCORES
[ok]: ZRANGEBYSCORE with LIMIT
[ok]: ZRANGEBYSCORE with LIMIT and WITHSCORES
[ok]: ZRANGEBYSCORE with non-value min or max
[ok]: ZRANGEBYLEX/ZREVRANGEBYLEX/ZCOUNT basics
[ok]: ZRANGEBYSLEX with LIMIT
[ok]: ZRANGEBYLEX with invalid lex range specifiers
[ok]: ZREMRANGEBYSCORE basics
[ok]: ZREMRANGEBYSCORE with non-value min or max
[ok]: ZREMRANGEBYRANK basics
[ok]: ZUNIONSTORE against non-existing key doesn't set destination - ziplist
[ok]: ZUNIONSTORE with empty set - ziplist
[ok]: ZUNIONSTORE basics - ziplist
[ok]: ZUNIONSTORE with weights - ziplist
[ok]: ZUNIONSTORE with a regular set and weights - ziplist
[ok]: ZUNIONSTORE with AGGREGATE MIN - ziplist
[ok]: ZUNIONSTORE with AGGREGATE MAX - ziplist
[ok]: ZINTERSTORE basics - ziplist
[ok]: ZINTERSTORE with weights - ziplist
[ok]: ZINTERSTORE with a regular set and weights - ziplist
[ok]: ZINTERSTORE with AGGREGATE MIN - ziplist
[ok]: ZINTERSTORE with AGGREGATE MAX - ziplist
[ok]: ZUNIONSTORE with +inf/-inf scores - ziplist
[ok]: ZUNIONSTORE with NaN weights ziplist
[ok]: ZINTERSTORE with +inf/-inf scores - ziplist
[ok]: ZINTERSTORE with NaN weights ziplist
[ok]: Check encoding - skiplist
[ok]: ZSET basic ZADD and score update - skiplist
[ok]: ZSET element can't be set to NaN with ZADD - skiplist
[ok]: ZSET element can't be set to NaN with ZINCRBY
[ok]: ZINCRBY calls leading to NaN result in error
[ok]: ZADD - Variadic version base case
[ok]: ZADD - Return value is the number of actually added items
[ok]: ZADD - Variadic version does not add nothing on single parsing err
[ok]: ZADD - Variadic version will raise error on missing arg
[ok]: ZINCRBY does not work variadic even if shares ZADD implementation
[ok]: ZCARD basics - skiplist
[ok]: ZREM removes key after last element is removed
[ok]: ZREM variadic version
[ok]: ZREM variadic version -- remove elements after key deletion
[ok]: ZRANGE basics - skiplist
[ok]: ZREVRANGE basics - skiplist
[ok]: ZRANK/ZREVRANK basics - skiplist
[ok]: ZRANK - after deletion - skiplist
[ok]: ZINCRBY - can create a new sorted set - skiplist
[ok]: ZINCRBY - increment and decrement - skiplist
[ok]: ZRANGEBYSCORE/ZREVRANGEBYSCORE/ZCOUNT basics
[ok]: ZRANGEBYSCORE with WITHSCORES
[ok]: ZRANGEBYSCORE with LIMIT
[ok]: ZRANGEBYSCORE with LIMIT and WITHSCORES
[ok]: ZRANGEBYSCORE with non-value min or max
[ok]: ZRANGEBYLEX/ZREVRANGEBYLEX/ZCOUNT basics
[ok]: ZRANGEBYSLEX with LIMIT
[ok]: ZRANGEBYLEX with invalid lex range specifiers
[ok]: ZREMRANGEBYSCORE basics
[ok]: ZREMRANGEBYSCORE with non-value min or max
[ok]: ZREMRANGEBYRANK basics
[ok]: ZUNIONSTORE against non-existing key doesn't set destination - skiplist
[ok]: ZUNIONSTORE with empty set - skiplist
[ok]: ZUNIONSTORE basics - skiplist
[ok]: ZUNIONSTORE with weights - skiplist
[ok]: ZUNIONSTORE with a regular set and weights - skiplist
[ok]: ZUNIONSTORE with AGGREGATE MIN - skiplist
[ok]: ZUNIONSTORE with AGGREGATE MAX - skiplist
[ok]: ZINTERSTORE basics - skiplist
[ok]: ZINTERSTORE with weights - skiplist
[ok]: ZINTERSTORE with a regular set and weights - skiplist
[ok]: ZINTERSTORE with AGGREGATE MIN - skiplist
[ok]: ZINTERSTORE with AGGREGATE MAX - skiplist
[ok]: ZUNIONSTORE with +inf/-inf scores - skiplist
[ok]: ZUNIONSTORE with NaN weights skiplist
[ok]: ZINTERSTORE with +inf/-inf scores - skiplist
[ok]: ZINTERSTORE with NaN weights skiplist
[ok]: ZINTERSTORE regression with two sets, intset+hashtable
[ok]: ZUNIONSTORE regression, should not create NaN in scores
[ok]: ZINTERSTORE #516 regression, mixed sets and ziplist zsets
[ok]: ZUNIONSTORE result is sorted
[ok]: ZSCORE - ziplist
[ok]: ZSCORE after a DEBUG RELOAD - ziplist
[ok]: ZSET sorting stresser - ziplist
[ok]: ZRANGEBYSCORE fuzzy test, 100 ranges in 128 element sorted set - ziplist
[ok]: ZRANGEBYLEX fuzzy test, 100 ranges in 128 element sorted set - ziplist
[ok]: ZREMRANGEBYLEX fuzzy test, 100 ranges in 128 element sorted set - ziplist
[ok]: ZSETs skiplist implementation backlink consistency test - ziplist
[ok]: ZSETs ZRANK augmented skip list stress testing - ziplist
[ok]: ZSCORE - skiplist
[ok]: ZSCORE after a DEBUG RELOAD - skiplist
[ok]: ZSET sorting stresser - skiplist
[ok]: ZRANGEBYSCORE fuzzy test, 100 ranges in 100 element sorted set - skiplist
[ok]: ZRANGEBYLEX fuzzy test, 100 ranges in 100 element sorted set - skiplist
[ok]: ZREMRANGEBYLEX fuzzy test, 100 ranges in 100 element sorted set - skiplist
[ok]: ZSETs skiplist implementation backlink consistency test - skiplist
[ok]: ZSETs ZRANK augmented skip list stress testing - skiplist
[10/36 done]: unit/type/zset (43 seconds)
Testing unit/type/hash
[ok]: HSET/HLEN - Small hash creation
[ok]: Is the small hash encoded with a ziplist?
[ok]: HSET/HLEN - Big hash creation
[ok]: Is the big hash encoded with a ziplist?
[ok]: HGET against the small hash
[ok]: HGET against the big hash
[ok]: HGET against non existing key
[ok]: HSET in update and insert mode
[ok]: HSETNX target key missing - small hash
[ok]: HSETNX target key exists - small hash
[ok]: HSETNX target key missing - big hash
[ok]: HSETNX target key exists - big hash
[ok]: HMSET wrong number of args
[ok]: HMSET - small hash
[ok]: HMSET - big hash
[ok]: HMGET against non existing key and fields
[ok]: HMGET against wrong type
[ok]: HMGET - small hash
[ok]: HMGET - big hash
[ok]: HKEYS - small hash
[ok]: HKEYS - big hash
[ok]: HVALS - small hash
[ok]: HVALS - big hash
[ok]: HGETALL - small hash
[ok]: HGETALL - big hash
[ok]: HDEL and return value
[ok]: HDEL - more than a single value
[ok]: HDEL - hash becomes empty before deleting all specified fields
[ok]: HEXISTS
[ok]: Is a ziplist encoded Hash promoted on big payload?
[ok]: HINCRBY against non existing database key
[ok]: HINCRBY against non existing hash key
[ok]: HINCRBY against hash key created by hincrby itself
[ok]: HINCRBY against hash key originally set with HSET
[ok]: HINCRBY over 32bit value
[ok]: HINCRBY over 32bit value with over 32bit increment
[ok]: HINCRBY fails against hash value with spaces (left)
[ok]: HINCRBY fails against hash value with spaces (right)
[ok]: HINCRBY can detect overflows
[ok]: HINCRBYFLOAT against non existing database key
[ok]: HINCRBYFLOAT against non existing hash key
[ok]: HINCRBYFLOAT against hash key created by hincrby itself
[ok]: HINCRBYFLOAT against hash key originally set with HSET
[ok]: HINCRBYFLOAT over 32bit value
[ok]: HINCRBYFLOAT over 32bit value with over 32bit increment
[ok]: HINCRBYFLOAT fails against hash value with spaces (left)
[ok]: HINCRBYFLOAT fails against hash value with spaces (right)
[ok]: Hash ziplist regression test for large keys
[ok]: Hash fuzzing #1 - 10 fields
[ok]: Hash fuzzing #2 - 10 fields
[ok]: Hash fuzzing #1 - 512 fields
[ok]: Hash fuzzing #2 - 512 fields
[ok]: Stress test the hash ziplist -> hashtable encoding conversion
[11/36 done]: unit/type/hash (27 seconds)
Testing unit/sort
[ok]: Ziplist: SORT BY key
[ok]: Ziplist: SORT BY key with limit
[ok]: Ziplist: SORT BY hash field
[ok]: Linked list: SORT BY key
[ok]: Linked list: SORT BY key with limit
[ok]: Linked list: SORT BY hash field
[ok]: Big Linked list: SORT BY key
[ok]: Big Linked list: SORT BY key with limit
[ok]: Big Linked list: SORT BY hash field
[ok]: Intset: SORT BY key
[ok]: Intset: SORT BY key with limit
[ok]: Intset: SORT BY hash field
[ok]: Hash table: SORT BY key
[ok]: Hash table: SORT BY key with limit
[ok]: Hash table: SORT BY hash field
[ok]: Big Hash table: SORT BY key
[ok]: Big Hash table: SORT BY key with limit
[ok]: Big Hash table: SORT BY hash field
[ok]: SORT GET #
[ok]: SORT GET <const>
[ok]: SORT GET (key and hash) with sanity check
[ok]: SORT BY key STORE
[ok]: SORT BY hash field STORE
[ok]: SORT DESC
[ok]: SORT ALPHA against integer encoded strings
[ok]: SORT sorted set
[ok]: SORT sorted set BY nosort should retain ordering
[ok]: SORT sorted set BY nosort + LIMIT
[ok]: SORT sorted set BY nosort works as expected from scripts
[ok]: SORT sorted set: +inf and -inf handling
[ok]: SORT regression for issue #19, sorting floats
[ok]: SORT with STORE returns zero if result is empty (github issue 224)
[ok]: SORT with STORE does not create empty lists (github issue 224)
[ok]: SORT with STORE removes key if result is empty (github issue 227)
[ok]: SORT with BY <constant> and STORE should still order output
[ok]: SORT will complain with numerical sorting and bad doubles (1)
[ok]: SORT will complain with numerical sorting and bad doubles (2)
[ok]: SORT BY sub-sorts lexicographically if score is the same
[ok]: SORT GET with pattern ending with just -> does not get hash field
[ok]: SORT by nosort retains native order for lists
[ok]: SORT by nosort plus store retains native order for lists
[ok]: SORT by nosort with limit returns based on original list order
[ok]: SORT speed, 100 element list BY key, 100 times
[ok]: SORT speed, 100 element list BY hash field, 100 times
[ok]: SORT speed, 100 element list directly, 100 times
[ok]: SORT speed, 100 element list BY <const>, 100 times
[12/36 done]: unit/sort (51 seconds)
Testing unit/expire
[ok]: EXPIRE - set timeouts multiple times
[ok]: EXPIRE - It should be still possible to read 'x'
[ok]: EXPIRE - After 2.1 seconds the key should no longer be here
[ok]: EXPIRE - write on expire should work
[ok]: EXPIREAT - Check for EXPIRE alike behavior
[ok]: SETEX - Set + Expire combo operation. Check for TTL
[ok]: SETEX - Check value
[ok]: SETEX - Overwrite old key
[ok]: SETEX - Wait for the key to expire
[ok]: SETEX - Wrong time parameter
[ok]: PERSIST can undo an EXPIRE
[ok]: PERSIST returns 0 against non existing or non volatile keys
[ok]: EXPIRE pricision is now the millisecond
[ok]: PEXPIRE/PSETEX/PEXPIREAT can set sub-second expires
[ok]: TTL returns tiem to live in seconds
[ok]: PTTL returns time to live in milliseconds
[ok]: TTL / PTTL return -1 if key has no expire
[ok]: TTL / PTTL return -2 if key does not exit
[ok]: Redis should actively expire keys incrementally
[ok]: Redis should lazy expire keys
[ok]: EXPIRE should not resurrect keys (issue #1026)
[ok]: 5 keys in, 5 keys out
[13/36 done]: unit/expire (11 seconds)
Testing unit/other
[ok]: SAVE - make sure there are all the types as values
[ok]: FUZZ stresser with data model binary
[ok]: FUZZ stresser with data model alpha
[ok]: FUZZ stresser with data model compr
[ok]: BGSAVE
[ok]: SELECT an out of range DB
[ok]: EXPIRES after a reload (snapshot + append only file rewrite)
[ok]: EXPIRES after AOF reload (without rewrite)
[ok]: PIPELINING stresser (also a regression for the old epoll bug)
[ok]: APPEND basics
[ok]: APPEND basics, integer encoded values
[ok]: APPEND fuzzing
[ok]: FLUSHDB
[ok]: Perform a final SAVE to leave a clean DB on disk
[14/36 done]: unit/other (29 seconds)
Testing unit/multi
[ok]: MUTLI / EXEC basics
[ok]: DISCARD
[ok]: Nested MULTI are not allowed
[ok]: MULTI where commands alter argc/argv
[ok]: WATCH inside MULTI is not allowed
[ok]: EXEC fails if there are errors while queueing commands #1
[ok]: EXEC fails if there are errors while queueing commands #2
[ok]: If EXEC aborts, the client MULTI state is cleared
[ok]: EXEC works on WATCHed key not modified
[ok]: EXEC fail on WATCHed key modified (1 key of 1 watched)
[ok]: EXEC fail on WATCHed key modified (1 key of 5 watched)
[ok]: EXEC fail on WATCHed key modified by SORT with STORE even if the result is empty
[ok]: After successful EXEC key is no longer watched
[ok]: After failed EXEC key is no longer watched
[ok]: It is possible to UNWATCH
[ok]: UNWATCH when there is nothing watched works as expected
[ok]: FLUSHALL is able to touch the watched keys
[ok]: FLUSHALL does not touch non affected keys
[ok]: FLUSHDB is able to touch the watched keys
[ok]: FLUSHDB does not touch non affected keys
[ok]: WATCH is able to remember the DB a key belongs to
[ok]: WATCH will consider touched keys target of EXPIRE
[ok]: WATCH will not consider touched expired keys
[ok]: DISCARD should clear the WATCH dirty flag on the client
[ok]: DISCARD should UNWATCH all the keys
[ok]: MULTI / EXEC is propagated correctly (single write command)
[ok]: MULTI / EXEC is propagated correctly (empty transaction)
[ok]: MULTI / EXEC is propagated correctly (read-only commands)
[ok]: MULTI / EXEC is propagated correctly (write command, no effect)
[15/36 done]: unit/multi (2 seconds)
Testing unit/quit
[ok]: QUIT returns OK
[ok]: Pipelined commands after QUIT must not be executed
[ok]: Pipelined commands after QUIT that exceed read buffer size
[16/36 done]: unit/quit (1 seconds)
Testing unit/aofrw
[ok]: AOF rewrite during write load
[ok]: Turning off AOF kills the background writing child if any
[ok]: AOF rewrite of list with ziplist encoding, string data
[ok]: AOF rewrite of list with linkedlist encoding, string data
[ok]: AOF rewrite of list with ziplist encoding, int data
[ok]: AOF rewrite of list with linkedlist encoding, int data
[ok]: AOF rewrite of set with intset encoding, string data
[ok]: AOF rewrite of set with hashtable encoding, string data
[ok]: AOF rewrite of set with intset encoding, int data
[ok]: AOF rewrite of set with hashtable encoding, int data
[ok]: AOF rewrite of hash with ziplist encoding, string data
[ok]: AOF rewrite of hash with hashtable encoding, string data
[ok]: AOF rewrite of hash with ziplist encoding, int data
[ok]: AOF rewrite of hash with hashtable encoding, int data
[ok]: AOF rewrite of zset with ziplist encoding, string data
[ok]: AOF rewrite of zset with skiplist encoding, string data
[ok]: AOF rewrite of zset with ziplist encoding, int data
[ok]: AOF rewrite of zset with skiplist encoding, int data
[ok]: BGREWRITEAOF is delayed if BGSAVE is in progress
[ok]: BGREWRITEAOF is refused if already in progress
[17/36 done]: unit/aofrw (42 seconds)
Testing integration/replication
[ok]: First server should have role slave after SLAVEOF
[ok]: BRPOPLPUSH replication, when blocking against empty list
[ok]: BRPOPLPUSH replication, list exists
[ok]: Second server should have role master at first
[ok]: SLAVEOF should start with link status "down"
[ok]: The role should immediately be changed to "slave"
[ok]: Sync should have transferred keys from master
[ok]: The link status should be up
[ok]: SET on the master should immediately propagate
[ok]: FLUSHALL should replicate
[ok]: ROLE in master reports master with a slave
[ok]: ROLE in slave reports slave in connected state
[ok]: Connect multiple slaves at the same time (issue #141), diskless=no
[ok]: Connect multiple slaves at the same time (issue #141), diskless=yes
[18/36 done]: integration/replication (121 seconds)
Testing integration/replication-2
[ok]: First server should have role slave after SLAVEOF
[ok]: If min-slaves-to-write is honored, write is accepted
[ok]: No write if min-slaves-to-write is < attached slaves
[ok]: If min-slaves-to-write is honored, write is accepted (again)
[ok]: No write if min-slaves-max-lag is > of the slave lag
[ok]: min-slaves-to-write is ignored by slaves
[ok]: MASTER and SLAVE dataset should be identical after complex ops
[19/36 done]: integration/replication-2 (50 seconds)
Testing integration/replication-3
[ok]: First server should have role slave after SLAVEOF
[ok]: MASTER and SLAVE consistency with expire
[ok]: First server should have role slave after SLAVEOF
[ok]: MASTER and SLAVE consistency with EVALSHA replication
[20/36 done]: integration/replication-3 (97 seconds)
Testing integration/replication-4
[ok]: First server should have role slave after SLAVEOF
[ok]: Test replication with parallel clients writing in differnet DBs
[ok]: First server should have role slave after SLAVEOF
[ok]: With min-slaves-to-write (1,3): master should be writable
[ok]: With min-slaves-to-write (2,3): master should not be writable
[ok]: With min-slaves-to-write: master not writable with lagged slave
[ok]: First server should have role slave after SLAVEOF
[ok]: Replication: commands with many arguments (issue #1221)
[21/36 done]: integration/replication-4 (136 seconds)
Testing integration/replication-psync
[ok]: Slave should be able to synchronize with the master
[ok]: Detect write load to master
[ok]: Test replication partial resync: ok psync
[ok]: Slave should be able to synchronize with the master
[ok]: Detect write load to master
[ok]: Test replication partial resync: no backlog
[ok]: Slave should be able to synchronize with the master
[ok]: Detect write load to master
[ok]: Test replication partial resync: ok after delay
[ok]: Slave should be able to synchronize with the master
[ok]: Detect write load to master
[ok]: Test replication partial resync: backlog expired
[22/36 done]: integration/replication-psync (46 seconds)
Testing integration/aof
[ok]: Unfinished MULTI: Server should start if load-truncated is yes
[ok]: Short read: Server should start if load-truncated is yes
[ok]: Truncated AOF loaded: we expect foo to be equal to 5
[ok]: Append a new command after loading an incomplete AOF
[ok]: Short read + command: Server should start
[ok]: Truncated AOF loaded: we expect foo to be equal to 6 now
[ok]: Bad format: Server should have logged an error
[ok]: Unfinished MULTI: Server should have logged an error
[ok]: Short read: Server should have logged an error
[ok]: Short read: Utility should confirm the AOF is not valid
[ok]: Short read: Utility should be able to fix the AOF
[ok]: Fixed AOF: Server should have been started
[ok]: Fixed AOF: Keyspace should contain values that were parseable
[ok]: AOF+SPOP: Server should have been started
[ok]: AOF+SPOP: Set should have 1 member
[ok]: AOF+EXPIRE: Server should have been started
[ok]: AOF+EXPIRE: List should be empty
[ok]: Redis should not try to convert DEL into EXPIREAT for EXPIRE -1
[23/36 done]: integration/aof (5 seconds)
Testing integration/rdb
[ok]: RDB encoding loading test
[ok]: Server started empty with non-existing RDB file
[ok]: Server started empty with empty RDB file
[ok]: Server should not start if RDB file can't be open
[ok]: Server should not start if RDB is corrupted
[24/36 done]: integration/rdb (2 seconds)
Testing integration/convert-zipmap-hash-on-load
[ok]: RDB load zipmap hash: converts to ziplist
[ok]: RDB load zipmap hash: converts to hash table when hash-max-ziplist-entries is exceeded
[ok]: RDB load zipmap hash: converts to hash table when hash-max-ziplist-value is exceeded
[25/36 done]: integration/convert-zipmap-hash-on-load (1 seconds)
Testing unit/pubsub
[ok]: Pub/Sub PING
[ok]: PUBLISH/SUBSCRIBE basics
[ok]: PUBLISH/SUBSCRIBE with two clients
[ok]: PUBLISH/SUBSCRIBE after UNSUBSCRIBE without arguments
[ok]: SUBSCRIBE to one channel more than once
[ok]: UNSUBSCRIBE from non-subscribed channels
[ok]: PUBLISH/PSUBSCRIBE basics
[ok]: PUBLISH/PSUBSCRIBE with two clients
[ok]: PUBLISH/PSUBSCRIBE after PUNSUBSCRIBE without arguments
[ok]: PUNSUBSCRIBE from non-subscribed channels
[ok]: NUMSUB returns numbers, not strings (#1561)
[ok]: Mix SUBSCRIBE and PSUBSCRIBE
[ok]: PUNSUBSCRIBE and UNSUBSCRIBE should always reply
[ok]: Keyspace notifications: we receive keyspace notifications
[ok]: Keyspace notifications: we receive keyevent notifications
[ok]: Keyspace notifications: we can receive both kind of events
[ok]: Keyspace notifications: we are able to mask events
[ok]: Keyspace notifications: general events test
[ok]: Keyspace notifications: list events test
[ok]: Keyspace notifications: set events test
[ok]: Keyspace notifications: zset events test
[ok]: Keyspace notifications: hash events test
[ok]: Keyspace notifications: expired events (triggered expire)
[ok]: Keyspace notifications: expired events (background expire)
[ok]: Keyspace notifications: evicted events
[ok]: Keyspace notifications: test CONFIG GET/SET of event flags
[26/36 done]: unit/pubsub (1 seconds)
Testing unit/slowlog
[ok]: SLOWLOG - check that it starts with an empty log
[ok]: SLOWLOG - only logs commands taking more time than specified
[ok]: SLOWLOG - max entries is correctly handled
[ok]: SLOWLOG - GET optional argument to limit output len works
[ok]: SLOWLOG - RESET subcommand works
[ok]: SLOWLOG - logged entry sanity check
[ok]: SLOWLOG - commands with too many arguments are trimmed
[ok]: SLOWLOG - too long arguments are trimmed
[ok]: SLOWLOG - EXEC is not logged, just executed commands
[27/36 done]: unit/slowlog (1 seconds)
Testing unit/scripting
[ok]: EVAL - Does Lua interpreter replies to our requests?
[ok]: EVAL - Lua integer -> Redis protocol type conversion
[ok]: EVAL - Lua string -> Redis protocol type conversion
[ok]: EVAL - Lua true boolean -> Redis protocol type conversion
[ok]: EVAL - Lua false boolean -> Redis protocol type conversion
[ok]: EVAL - Lua status code reply -> Redis protocol type conversion
[ok]: EVAL - Lua error reply -> Redis protocol type conversion
[ok]: EVAL - Lua table -> Redis protocol type conversion
[ok]: EVAL - Are the KEYS and ARGV arrays populated correctly?
[ok]: EVAL - is Lua able to call Redis API?
[ok]: EVALSHA - Can we call a SHA1 if already defined?
[ok]: EVALSHA - Can we call a SHA1 in uppercase?
[ok]: EVALSHA - Do we get an error on invalid SHA1?
[ok]: EVALSHA - Do we get an error on non defined SHA1?
[ok]: EVAL - Redis integer -> Lua type conversion
[ok]: EVAL - Redis bulk -> Lua type conversion
[ok]: EVAL - Redis multi bulk -> Lua type conversion
[ok]: EVAL - Redis status reply -> Lua type conversion
[ok]: EVAL - Redis error reply -> Lua type conversion
[ok]: EVAL - Redis nil bulk reply -> Lua type conversion
[ok]: EVAL - Is the Lua client using the currently selected DB?
[ok]: EVAL - SELECT inside Lua should not affect the caller
[ok]: EVAL - Scripts can't run certain commands
[ok]: EVAL - Scripts can't run certain commands
[ok]: EVAL - No arguments to redis.call/pcall is considered an error
[ok]: EVAL - redis.call variant raises a Lua error on Redis cmd error (1)
[ok]: EVAL - redis.call variant raises a Lua error on Redis cmd error (1)
[ok]: EVAL - redis.call variant raises a Lua error on Redis cmd error (1)
[ok]: EVAL - JSON numeric decoding
[ok]: EVAL - JSON string decoding
[ok]: EVAL - cmsgpack can pack double?
[ok]: EVAL - cmsgpack can pack negative int64?
[ok]: EVAL - cmsgpack can pack and unpack circular references?
[ok]: EVAL - Numerical sanity check from bitop
[ok]: EVAL - Verify minimal bitop functionality
[ok]: SCRIPTING FLUSH - is able to clear the scripts cache?
[ok]: SCRIPT EXISTS - can detect already defined scripts?
[ok]: SCRIPT LOAD - is able to register scripts in the scripting cache
[ok]: In the context of Lua the output of random commands gets ordered
[ok]: SORT is normally not alpha re-ordered for the scripting engine
[ok]: SORT BY <constant> output gets ordered for scripting
[ok]: SORT BY <constant> with GET gets ordered for scripting
[ok]: redis.sha1hex() implementation
[ok]: Globals protection reading an undeclared global variable
[ok]: Globals protection setting an undeclared global*
[ok]: Test an example script DECR_IF_GT
[ok]: Scripting engine resets PRNG at every script execution
[ok]: Scripting engine PRNG can be seeded correctly
[ok]: EVAL does not leak in the Lua stack
[ok]: EVAL processes writes from AOF in read-only slaves
[ok]: We can call scripts rewriting client->argv from Lua
[ok]: Call Redis command with many args from Lua (issue #1764)
[ok]: Number conversion precision test (issue #1118)
[ok]: String containing number precision test (regression of issue #1118)
[ok]: Verify negative arg count is error instead of crash (issue #1842)
[ok]: Correct handling of reused argv (issue #1939)
[ok]: Timedout read-only scripts can be killed by SCRIPT KILL
[ok]: Timedout script link is still usable after Lua returns
[ok]: Timedout scripts that modified data can't be killed by SCRIPT KILL
[ok]: SHUTDOWN NOSAVE can kill a timedout script anyway
[ok]: Before the slave connects we issue two EVAL commands
[ok]: Connect a slave to the main instance
[ok]: Now use EVALSHA against the master, with both SHAs
[ok]: If EVALSHA was replicated as EVAL, 'x' should be '4'
[ok]: Replication of script multiple pushes to list with BLPOP
[ok]: EVALSHA replication when first call is readonly
[ok]: Lua scripts using SELECT are replicated correctly
[28/36 done]: unit/scripting (6 seconds)
Testing unit/maxmemory
[ok]: Without maxmemory small integers are shared
[ok]: With maxmemory and non-LRU policy integers are still shared
[ok]: With maxmemory and LRU policy integers are not shared
[ok]: maxmemory - is the memory limit honoured? (policy allkeys-random)
[ok]: maxmemory - is the memory limit honoured? (policy allkeys-lru)
[ok]: maxmemory - is the memory limit honoured? (policy volatile-lru)
[ok]: maxmemory - is the memory limit honoured? (policy volatile-random)
[ok]: maxmemory - is the memory limit honoured? (policy volatile-ttl)
[ok]: maxmemory - only allkeys-* should remove non-volatile keys (allkeys-random)
[ok]: maxmemory - only allkeys-* should remove non-volatile keys (allkeys-lru)
[ok]: maxmemory - only allkeys-* should remove non-volatile keys (volatile-lru)
[ok]: maxmemory - only allkeys-* should remove non-volatile keys (volatile-random)
[ok]: maxmemory - only allkeys-* should remove non-volatile keys (volatile-ttl)
[ok]: maxmemory - policy volatile-lru should only remove volatile keys.
[ok]: maxmemory - policy volatile-random should only remove volatile keys.
[ok]: maxmemory - policy volatile-ttl should only remove volatile keys.
[29/36 done]: unit/maxmemory (28 seconds)
Testing unit/introspection
[ok]: CLIENT LIST
[ok]: MONITOR can log executed commands
[ok]: MONITOR can log commands issued by the scripting engine
[ok]: CLIENT GETNAME should return NIL if name is not assigned
[ok]: CLIENT LIST shows empty fields for unassigned names
[ok]: CLIENT SETNAME does not accept spaces
[ok]: CLIENT SETNAME can assign a name to this connection
[ok]: CLIENT SETNAME can change the name of an existing connection
[ok]: After CLIENT SETNAME, connection can still be closed
[30/36 done]: unit/introspection (0 seconds)
Testing unit/limits
[ok]: Check if maxclients works refusing connections
[31/36 done]: unit/limits (2 seconds)
Testing unit/obuf-limits
[ok]: Client output buffer hard limit is enforced
[ok]: Client output buffer soft limit is not enforced if time is not overreached
[ok]: Client output buffer soft limit is enforced if time is overreached
[32/36 done]: unit/obuf-limits (222 seconds)
Testing unit/dump
[ok]: DUMP / RESTORE are able to serialize / unserialize a simple key
[ok]: RESTORE can set an arbitrary expire to the materialized key
[ok]: RESTORE can set an expire that overflows a 32 bit integer
[ok]: RESTORE returns an error of the key already exists
[ok]: DUMP of non existing key returns nil
[ok]: MIGRATE is able to migrate a key between two instances
[ok]: MIGRATE propagates TTL correctly
[ok]: MIGRATE can correctly transfer large values
[ok]: MIGRATE can correctly transfer hashes
[ok]: MIGRATE timeout actually works
[33/36 done]: unit/dump (8 seconds)
Testing unit/bitops
[ok]: BITCOUNT returns 0 against non existing key
[ok]: BITCOUNT against test vector #1
[ok]: BITCOUNT against test vector #2
[ok]: BITCOUNT against test vector #3
[ok]: BITCOUNT against test vector #4
[ok]: BITCOUNT against test vector #5
[ok]: BITCOUNT fuzzing without start/end
[ok]: BITCOUNT fuzzing with start/end
[ok]: BITCOUNT with start, end
[ok]: BITCOUNT syntax error #1
[ok]: BITCOUNT regression test for github issue #582
[ok]: BITCOUNT misaligned prefix
[ok]: BITCOUNT misaligned prefix + full words + remainder
[ok]: BITOP NOT (empty string)
[ok]: BITOP NOT (known string)
[ok]: BITOP where dest and target are the same key
[ok]: BITOP AND|OR|XOR don't change the string with single input key
[ok]: BITOP missing key is considered a stream of zero
[ok]: BITOP shorter keys are zero-padded to the key with max length
[ok]: BITOP and fuzzing
[ok]: BITOP or fuzzing
[ok]: BITOP xor fuzzing
[ok]: BITOP NOT fuzzing
[ok]: BITOP with integer encoded source objects
[ok]: BITOP with non string source key
[ok]: BITOP with empty string after non empty string (issue #529)
[ok]: BITPOS bit=0 with empty key returns 0
[ok]: BITPOS bit=1 with empty key returns -1
[ok]: BITPOS bit=0 with string less than 1 word works
[ok]: BITPOS bit=1 with string less than 1 word works
[ok]: BITPOS bit=0 starting at unaligned address
[ok]: BITPOS bit=1 starting at unaligned address
[ok]: BITPOS bit=0 unaligned+full word+reminder
[ok]: BITPOS bit=1 unaligned+full word+reminder
[ok]: BITPOS bit=1 returns -1 if string is all 0 bits
[ok]: BITPOS bit=0 works with intervals
[ok]: BITPOS bit=1 works with intervals
[ok]: BITPOS bit=0 changes behavior if end is given
[ok]: BITPOS bit=1 fuzzy testing using SETBIT
[ok]: BITPOS bit=0 fuzzy testing using SETBIT
[34/36 done]: unit/bitops (24 seconds)
Testing unit/memefficiency
[ok]: Memory efficiency with values in range 32
[ok]: Memory efficiency with values in range 64
[ok]: Memory efficiency with values in range 128
[ok]: Memory efficiency with values in range 1024
[ok]: Memory efficiency with values in range 16384
[35/36 done]: unit/memefficiency (320 seconds)
Testing unit/hyperloglog
[ok]: HyperLogLog self test passes
[ok]: PFADD without arguments creates an HLL value
[ok]: Approximated cardinality after creation is zero
[ok]: PFADD returns 1 when at least 1 reg was modified
[ok]: PFADD returns 0 when no reg was modified
[ok]: PFADD works with empty string (regression)
[ok]: PFCOUNT returns approximated cardinality of set
[ok]: HyperLogLogs are promote from sparse to dense
[ok]: HyperLogLog sparse encoding stress test
[ok]: Corrupted sparse HyperLogLogs are detected: Additionl at tail
[ok]: Corrupted sparse HyperLogLogs are detected: Broken magic
[ok]: Corrupted sparse HyperLogLogs are detected: Invalid encoding
[ok]: Corrupted dense HyperLogLogs are detected: Wrong length
[ok]: PFADD, PFCOUNT, PFMERGE type checking works
[ok]: PFMERGE results on the cardinality of union of sets
[ok]: PFCOUNT multiple-keys merge returns cardinality of union
[ok]: PFDEBUG GETREG returns the HyperLogLog raw registers
[ok]: PFADD / PFCOUNT cache invalidation works
[36/36 done]: unit/hyperloglog (65 seconds)
The End
Execution time of different units:
0 seconds - unit/printver
1 seconds - unit/auth
3 seconds - unit/protocol
55 seconds - unit/basic
2 seconds - unit/scan
16 seconds - unit/type/list
22 seconds - unit/type/list-2
64 seconds - unit/type/list-3
38 seconds - unit/type/set
43 seconds - unit/type/zset
27 seconds - unit/type/hash
51 seconds - unit/sort
11 seconds - unit/expire
29 seconds - unit/other
2 seconds - unit/multi
1 seconds - unit/quit
42 seconds - unit/aofrw
121 seconds - integration/replication
50 seconds - integration/replication-2
97 seconds - integration/replication-3
136 seconds - integration/replication-4
46 seconds - integration/replication-psync
5 seconds - integration/aof
2 seconds - integration/rdb
1 seconds - integration/convert-zipmap-hash-on-load
1 seconds - unit/pubsub
1 seconds - unit/slowlog
6 seconds - unit/scripting
28 seconds - unit/maxmemory
0 seconds - unit/introspection
2 seconds - unit/limits
222 seconds - unit/obuf-limits
8 seconds - unit/dump
24 seconds - unit/bitops
320 seconds - unit/memefficiency
65 seconds - unit/hyperloglog
\o/ All tests passed without errors!
Cleanup: may take some time... OK
make[1]: Leaving directory '/home/pi/redis-2.8.19/src'
pi@raspberrypi ~/redis-2.8.19 $
pi@raspberrypi ~/redis-2.8.19 $ make install
cd src && make install
make[1]: Entering directory '/home/pi/redis-2.8.19/src'
Hint: It's a good idea to run 'make test' ;)
INSTALL install
INSTALL install
INSTALL install
INSTALL install
INSTALL install
make[1]: Leaving directory '/home/pi/redis-2.8.19/src'
pi@raspberrypi ~/redis-2.8.19 $ redis-server &
[1] 8838
pi@raspberrypi ~/redis-2.8.19 $ [8838] 26 Mar 22:42:08.906 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
[8838] 26 Mar 22:42:08.917 # You requested maxclients of 10000 requiring at least 10032 max file descriptors.
[8838] 26 Mar 22:42:08.917 # Redis can't set maximum open files to 10032 because of OS error: Operation not permitted.
[8838] 26 Mar 22:42:08.917 # Current maximum open files is 1024. maxclients has been reduced to 4064 to compensate for low ulimit. If you need higher maxclients increase 'ulimit -n'.
[8838] 26 Mar 22:42:08.927 # Warning: 32 bit instance detected but no memory limit set. Setting 3 GB maxmemory limit with 'noeviction' policy now.
_._
_.-``__ ''-._
_.-`` `. `_. ''-._ Redis 2.8.19 (00000000/0) 32 bit
.-`` .-```. ```\/ _.,_ ''-._
( ' , .-` | `, ) Running in stand alone mode
|`-._`-...-` __...-.``-._|'` _.-'| Port: 6379
| `-._ `._ / _.-' | PID: 8838
`-._ `-._ `-./ _.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' | http://redis.io
`-._ `-._`-.__.-'_.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' |
`-._ `-._`-.__.-'_.-' _.-'
`-._ `-.__.-' _.-'
`-._ _.-'
`-.__.-'
[8838] 26 Mar 22:42:08.930 # Server started, Redis version 2.8.19
[8838] 26 Mar 22:42:08.930 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
[8838] 26 Mar 22:42:08.931 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.
[8838] 26 Mar 22:42:08.931 * DB loaded from disk: 0.000 seconds
[8838] 26 Mar 22:42:08.931 * The server is now ready to accept connections on port 6379
pi@raspberrypi ~/redis-2.8.19 $ redis-cli
127.0.0.1:6379> info
# Server
redis_version:2.8.19
redis_git_sha1:00000000
redis_git_dirty:0
redis_build_id:a1f28ba1e68cacbf
redis_mode:standalone
os:Linux 3.18.7-v7+ armv7l
arch_bits:32
multiplexing_api:epoll
gcc_version:4.6.3
process_id:8838
run_id:b14eb8838f7c562107c009378e7dfa60c7a493a6
tcp_port:6379
uptime_in_seconds:226
uptime_in_days:0
hz:10
lru_clock:1314194
config_file:
# Clients
connected_clients:1
client_longest_output_list:0
client_biggest_input_buf:0
blocked_clients:0
# Memory
used_memory:442200
used_memory_human:431.84K
used_memory_rss:3129344
used_memory_peak:442200
used_memory_peak_human:431.84K
used_memory_lua:26624
mem_fragmentation_ratio:7.08
mem_allocator:jemalloc-3.6.0
# Persistence
loading:0
rdb_changes_since_last_save:0
rdb_bgsave_in_progress:0
rdb_last_save_time:1427377328
rdb_last_bgsave_status:ok
rdb_last_bgsave_time_sec:-1
rdb_current_bgsave_time_sec:-1
aof_enabled:0
aof_rewrite_in_progress:0
aof_rewrite_scheduled:0
aof_last_rewrite_time_sec:-1
aof_current_rewrite_time_sec:-1
aof_last_bgrewrite_status:ok
aof_last_write_status:ok
# Stats
total_connections_received:1
total_commands_processed:0
instantaneous_ops_per_sec:0
total_net_input_bytes:14
total_net_output_bytes:0
instantaneous_input_kbps:0.00
instantaneous_output_kbps:0.00
rejected_connections:0
sync_full:0
sync_partial_ok:0
sync_partial_err:0
expired_keys:0
evicted_keys:0
keyspace_hits:0
keyspace_misses:0
pubsub_channels:0
pubsub_patterns:0
latest_fork_usec:0
# Replication
role:master
connected_slaves:0
master_repl_offset:0
repl_backlog_active:0
repl_backlog_size:1048576
repl_backlog_first_byte_offset:0
repl_backlog_histlen:0
# CPU
used_cpu_sys:0.30
used_cpu_user:0.16
used_cpu_sys_children:0.00
used_cpu_user_children:0.00
# Keyspace
127.0.0.1:6379>
127.0.0.1:6379> set raspberry pi
OK
127.0.0.1:6379> get raspberry
"pi"
127.0.0.1:6379> del raspberry
(integer) 1
127.0.0.1:6379>
'HardWare > 라즈베리파이(Raspberry Pi)' 카테고리의 다른 글
openssl 속도 측정 (1) | 2015.11.15 |
---|---|
RaspberryPi 2 - redis-benchmark result (0) | 2015.03.26 |
라즈베리파이 타임존 설정 (0) | 2015.03.23 |
라즈베리파이 타임존 설정
라즈베리파이 타임존 설정 (Raspberry Pi Setting the Timezone)
보통 SD에 기본 이미지 설치시 타임존이 UTC 로 되어있을 경우가 있음.
방법1. localtime 파일 복사
pi@raspberrypi $ date
2015. 03. 22. (일) 20:44:45 UTC
설정
pi@raspberrypi $ sudo cp /usr/share/zoneinfo/Asia/Seoul /etc/localtime
설정 확인
pi@raspberrypi $ date
2015. 03. 23. (월) 05:57:20 KST
방법2. tzselect 명령 이용
pi@raspberrypi ~ $ tzselect
Please identify a location so that time zone rules can be set correctly.
Please select a continent or ocean.
1) Africa
2) Americas
3) Antarctica
4) Arctic Ocean
5) Asia
6) Atlantic Ocean
7) Australia
8) Europe
9) Indian Ocean
10) Pacific Ocean
11) none - I want to specify the time zone using the Posix TZ format.
#? 5
Please select a country.
1) Afghanistan 18) Israel 35) Palestine
2) Armenia 19) Japan 36) Philippines
3) Azerbaijan 20) Jordan 37) Qatar
4) Bahrain 21) Kazakhstan 38) Russia
5) Bangladesh 22) Korea (North) 39) Saudi Arabia
6) Bhutan 23) Korea (South) 40) Singapore
7) Brunei 24) Kuwait 41) Sri Lanka
8) Cambodia 25) Kyrgyzstan 42) Syria
9) China 26) Laos 43) Taiwan
10) Cyprus 27) Lebanon 44) Tajikistan
11) East Timor 28) Macau 45) Thailand
12) Georgia 29) Malaysia 46) Turkmenistan
13) Hong Kong 30) Mongolia 47) United Arab Emirates
14) India 31) Myanmar (Burma) 48) Uzbekistan
15) Indonesia 32) Nepal 49) Vietnam
16) Iran 33) Oman 50) Yemen
17) Iraq 34) Pakistan
#? 23
The following information has been given:
Korea (South)
Therefore TZ='Asia/Seoul' will be used.
Local time is now: Mon Mar 23 06:01:23 KST 2015.
Universal Time is now: Sun Mar 22 21:01:23 UTC 2015.
Is the above information OK?
1) Yes
2) No
#? 1
You can make this change permanent for yourself by appending the line
TZ='Asia/Seoul'; export TZ
to the file '.profile' in your home directory; then log out and log in again.
Here is that TZ value again, this time on standard output so that you
can use the /usr/bin/tzselect command in shell scripts:
Asia/Seoul
pi@raspberrypi ~ $
방법3. dpkg-reconfigure tzdata 명령 이용
pi@raspberrypi ~ $ sudo dpkg-reconfigure tzdata
Current default time zone: 'Asia/Seoul'
Local time is now: Mon Mar 23 06:04:17 KST 2015.
Universal Time is now: Sun Mar 22 21:04:17 UTC 2015.
'HardWare > 라즈베리파이(Raspberry Pi)' 카테고리의 다른 글
openssl 속도 측정 (1) | 2015.11.15 |
---|---|
RaspberryPi 2 - redis-benchmark result (0) | 2015.03.26 |
라즈베리파이 레디스 설치 로그 ( Raspberry redis install history ) (0) | 2015.03.26 |
IPTIME 공유기 자동업데이트
펌웨어 정보
- 펌웨어 상태 : 정식 버전
- 펌웨어 파일 : 한글 -a3004ns_kr_9_40.bin / 영문 - a3004ns_en_9_40.bin
기능 추가 및 변경 사항
- 5GHz 최대 무선 성능 개선
- 미디어 서버(DLNA) 지원
- 온라인 펌웨어 업그레이드 지원
버튼 클릭만으로 최신 버전으로 업데이트
스마트 폰등의 스마트기기에서도 업그레이드 가능
공유기가 인터넷에 연결되어있어야 가능함
주의 사항
예기치 못한 상황으로 인한 업그레이드 실패시, 펌웨어 복구 도우미를 이용하여 펌웨어를 복구할 수 있습니다.
Good!
'HardWare' 카테고리의 다른 글
SK T포켓파이 M APN 주소 (0) | 2016.11.12 |
---|---|
LG G Pad V410 AT&T GSM Unlocked 7-Inch 4G LTE Wi-Fi 16GB Tablet GPS 성능 (0) | 2015.02.28 |