Cassandra 썸네일형 리스트형 Cassandra - 데이터 읽기, 쓰기(cassandra-cli) 데이터 입력 set User['song']['fname'] = 'JH'; set User['song']['email'] = 'purepleya@gmail.com'; 데이터 확인 count User['song'] 데이터 조회 get User['song'] 데이터 삭제 del User['song']['email'] 이래서 칼럼지향이라고 하는구나... 라고 생각하기 쉽지만 칼럼패밀리(RDBMS의 ROW 역할) 단위로 고유한 key가 생성되므로 칼럼 지향이라는 말은 옳지 않다고 한다 더보기 Cassandra - 키스페이스, 칼럼 패밀리 생성 (cassandra-cli) 키 스페이스(데이터베이스) 생성create keyspace MyKeysapce; 키 스페이스 변경use MyKeyspace; 컬럼패밀리(테이블) 생성create column family User with comparator=UTF8Type and default_validation_class=UTF8Type and key_validation_class=UTF8Type; 키스페이스 내용 확인describe MyKeyspace; 더보기 Cassandra - 설치 2013.05.23 update1.2 버전을 설치해보자 (영어다 젠장)http://www.datastax.com/docs/1.2/install/index ------------- 아래 글은 1.1.9 버전---------------- 참고 자료 : http://wiki.apache.org/cassandra/GettingStarted OS : Ubuntu 12.04 1. JAVA 버전 확인 JAVA 6 (java1.6.0_19 버전) 이상 버전 설치되어 있어야함 하지만 JAVA 7은 추천하지 않음 앗! JDK가 아닌 JRE가 깔려있었다. 것도 7 버전으로 JDK를 새로 설치한다. apt-get install default-jdk (다행히 default-jdk 는 JAVA 6 이다.) 2. 환경변수 확인 당.. 더보기 이전 1 2 3 다음