일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- setContentIntent
- 안드로이드 알림 예제
- 안드로이드 알림
- 버전별 관리
- 알림 인텐트
- 안드로이드 알림채널
- 알림 우선순위
- notification manager
- notifications
- Pending Intent
- notification channel
- setPriority(NotificationCompat.PRIORITY_HIGH)
- setDefaults(NotificationCompat.DEFAULT_ALL)
- NotificationCompat.Builder
- android notification 예제
- 펜딩인텐트
- Today
- Total
목록분류 전체보기 (97)
공부용 블로그
sudo apt-get update sudo apt-get install mariadb-server mariadb-client $ sudo mysql -u root -p (https://www.itzgeek.com/how-tos/linux/ubuntu-how-tos/install-mariadb-on-ubuntu-16-04.html) https://ohjongsung.io/2017/06/04/ubuntu-16-04-1-lts%EC%97%90-maria-db-%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0
https://www.monetdb.org/downloads/deb/ # wget --output-document=- https://www.monetdb.org/downloads/MonetDB-GPG-KEY | sudo apt-key add - # cd /etc/apt/source.list.d // 해당 디렉토리에서 # gedit monetdb.list // monetdb.list 파일 생성 파일에 아래 내용 저장 ( suite 는 # lsb_release -cs 로 확인 후 해당 하는 이름으로 대체 )deb https://dev.monetdb.org/downloads/deb/ suite monetdb deb-src https://dev.monetdb.org/downloads/deb/ suite mone..
모네 데이터베이스 모델 아래 논문참고함. MonetDB: Two Decades of Research in Column-oriented Database Architectures 1. Physical Data Model 컬럼 저장방식. 각각의 컬럼을 BAT 이라는 테이블에 저장한다. MonetDB uses the operating system’s memory mapped files support to load data in main memory and 2 exploit extended virtual memory. Thus, all data structures are represented in the same binary format on disk and in memory. Furthermore, MonetD..
Q. MySAM 이 셀렉트 속도가 빠르니까 vod_list 테이블을 select만 하도록 만들어서 MyIsam을 쓰고 변경이 있는 데이터(조회수 등) 테이블은 InnoDB 를 사용하면 어떻게 됨? Q. 아무리 셀렉트만 하는 테이블이더라도 새로운 vod가 생기면 insert 발생. 그럴땐 어떡? => 그렇더라도 셀렉트 비율이 훨씬 높은경우 insert가 생기기 전까지 쿼리캐시를 활용할 수 있음 Q. full text indexing? Q. MariaDB와 Percona의 용도? MariaDB is better for advanced features, the latest security and adapting to new tech. Percona excels at database performance and..
1. 컴퓨터 포맷/ ubuntu 16.04 2. mysql 5.7 설치 # apt-get update # apt-get install mysql-server 3. mysql 외부접속 허용 - my.cnf 파일에서 bind-address 127.0.0.1 을 주석처리하고 bind-address 0.0.0.0 으로 바꿔줌 - 터미널에서 mysql 사용 # mysql -u root -p # 패스워드 입력 - 데이터베이스 생성mysql > create database test_db default character set utf8; - 테이블 생성mysql > create table vod_list (vod_no varchar(32) primary key, title text, publisher varchar(1..
오류 메세지 cannot create poolableConnectionFactory(Could not connect to 192.168.0.62:3306 : unexpected end of stream. read 0 bytes from 4 (socket was closed by server)) 해결 시도 방법 1. mysql > show global variables like 'skip_name_resolve'; 2. 쓰레드와 시간 조절 - 믹스(select, update는 like)로 쓰레드 1000개 1분 요청시 오류발생 - 믹스로 쓰레드 100개 1분은 잘돌아감 - 셀렉트문만 쓰레드 1000개 1분도 잘돌아감 - 업데이트(쿼리 like에서 where vod_no으로 변경)만 쓰레드 1000개 1분시..
1. percona 설치 https://www.percona.com/doc/percona-server/5.7/installation/apt_repo.html wget https://repo.percona.com/apt/percona-release_0.1-6.$(lsb_release -sc)_all.deb dpkg -i percona-release_0.1-6.$(lsb_release -sc)_all.deb$ sudo apt-get update$ sudo apt-get install percona-server-server-5.7 2. percona 서버 사용 $ sudo service mysql start $ sudo service mysql status * percona 데이터 파일 저장 위치 /var/l..
1. mysql 8.0 버전 설치 https://websiteforstudents.com/install-mysql-8-0-on-ubuntu-16-04-17-10-18-04/ 2. 외부 접속 허용 (외부 컴퓨터에서 서버 DB에 접속하기 위해서 필요) mysql > use 디비명; mysql > create user 'root'@'%' identified by 'teamnova'; * root 자리는 사용자계정, teamnova 자리는 계정 패스워드, % 는 허용하는 아이피 주소를 모두로 함 mysql > grant all privileges on *.* to 'root'@'%'; mysql > flush privileges; mysql > select host, user from mysql.user; //..