본문 바로가기

카테고리 없음

2020-12-24 16시 개발자 글 모음 | "데이터가 흐르는 조직: 시즌2를 준비" 외 1개 이야기

[Redis] Redis 자료구조 알아보기 by 염광호 about Redis

  • > hmset user:1000 username antirez birthyear 1977 verified 1 OK > hget user:1000 username # user:1000 key와 username 이라는 hashkey를 이용하여 Get "antirez" > hget user:1000 birthyear "1977" > hgetall user:1000 1) "username" 2) "antirez" 3) "birthyear" 4) "1977" 5) "verified" 6) "1"
  • > zadd hackers 1940 "Alan Kay" # sorted Sets 자료구조로 추가 (integer) 1 > zadd hackers 1957 "Sophie Wilson" (integer) 1 > zadd hackers 1953 "Richard Stallman" (integer) 1 > zadd hackers 1949 "Anita Borg" (integer) 1 > zadd hackers 1965 "Yukihiro Matsumoto" (integer) 1 > zadd hackers 1914 "Hedy Lamarr" (integer) 1 > zadd hackers 1916 "Claude Shannon" (integer) 1 > zadd hackers 1969 "Linus Torvalds" (integer) 1 > zadd hackers 1912 "Alan Turing" (integer) 1
  • > zrange hackers 0 -1 # score를 통한 범위 검색 1) "Alan Turing" 2) "Hedy Lamarr" 3) "Claude Shannon" 4) "Alan Kay" 5) "Anita Borg" 6) "Richard Stallman" 7) "Sophie Wilson" 8) "Yukihiro Matsumoto" 9) "Linus Torvalds"


데이터가 흐르는 조직: 시즌2를 준비하며 - 마이리얼트립 데이터 조직의 성장기록 by 양승화

  • 사업부서인 만큼 거래액과 상품 관련 데이터를 봐야할 일이 많은데 마침 직접 데이터를 추출할 수 있는 SQL 교육이 열려 수강하게 되었습니다
  • 파트너별 예약건과 거래액 데이터를 확인하는 등 활용할 수 있는 범위가 넓다는 것을 깨닫고 더 열심히 참여하게 되었습니다
  • 로그플랫폼이 본격적으로 활용되면 웹과 앱의 행동 데이터를 통합해서 볼 수 있기 때문에 지금보다 훨씬 더 개인화된 추천과 상품 탐색 경험을 제공할 수 있습니다