Aerospike
*특징
JSON 형식의 호출을 요구하지 않고도 데이터를 저장하고 검색 할 수 있는 네이티브 인터페이스 제공
1. Speed : 예상 가능한 낮은 시간 99% < 1 millisecond
2. Scale : 1M TPS (특정 서버 에서 테스트시)
3. Reliability : 신뢰성 높음
Install 가이드 : 플랫폼별 가이드 상세 공식 홈페이지에 제공.
> https://www.aerospike.com/docs/operations/install
*Aerospike concepts in Mysql Terms
Aerospike | Mysql
-----------------------------------
namespace db
set table
bin column
key primary key
record row
*Aerospike command Admin/aql DataManagement
1.Name spaces 목록
> Show namespaces
2.Set 목록
> SHOW SETS
3.Bins 목록
> SHOW BINS
4.Recode detauls
> explain select * from {ns}.{set} where PK={primary key value} -- 하나의 Recode 보기
> select * from {ns}.{set} -- 전체보기
* Start /Stop the AMC server Command
To start the AMC:
> sudo /etc/init.d/amc start
To stop the AMC server:
> sudo /etc/init.d/amc stop
To restart the AMC server:
> sudo /etc/init.d/amc restart
To see whether or not the AMC server is up:
> sudo /etc/init.d/amc status
'DataBase' 카테고리의 다른 글
무료 ERD 추천 (0) | 2021.11.22 |
---|---|
mybatis 문법 foreach (0) | 2021.04.02 |
MSSQL LPAD (0) | 2011.03.25 |