일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
- collection.find
- 맥
- mongodb nodejs driver
- pip jupyter
- MacOS
- Node.js
- mongoDB [Object]
- Jupyter notebook
- MYSQL
- 맥에 파이썬 설치
- console.log
- util.inspect
- python3
- nodejs mongodb
- Projection
- Installation
- 파이썬3
- mongodb
- mongo-native
- Windows10
- [Object]
- homebrew
- query
- node.js설치
- node.js 연동
- Today
- Total
목록개념 공부 (19)
Bon Voyage
MongoDB in Actionhttps://book.naver.com/bookdb/book_detail.nhn?bid=6876243 MongoDB in Action 몽고디비 인 액션 MONGODB나 NOSQL에 경험 없는 개발자를 위한 쉽고 실전적인 입문서『MONGODB IN ACTION 몽고디비 인 액션』. 이 책은 MONGODB와 도큐먼트 지향 데이터베이스 모델을 소개한다. 적당한 속도로 진행되는 이 책은 개발자로서 필요한 큰 그림과 시스템 엔지니어를 만족시키기에 충분한 하위 수준의 상세한 내용을 동시에 제공한다. 수많은 예제들은 데이터 모델링의 중요한 분야에서 확신을 갖는 데 도움을 제공할 것이다. 또한 복제, 자동 샤딩, 배포 book.naver.com 9장 텍스트 검색 파트를 요약 정리했습니다..
MongoDB in Action https://book.naver.com/bookdb/book_detail.nhn?bid=6876243 MongoDB in Action 몽고디비 인 액션 MONGODB나 NOSQL에 경험 없는 개발자를 위한 쉽고 실전적인 입문서『MONGODB IN ACTION 몽고디비 인 액션』. 이 책은 MONGODB와 도큐먼트 지향 데이터베이스 모델을 소개한다. 적당한 속도로 진행되는 이 책은 개발자로서 필요한 큰 그림과 시스템 엔지니어를 만족시키기에 충분한 하위 수준의 상세한 내용을 동시에 제공한다. 수많은 예제들은 데이터 모델링의 중요한 분야에서 확신을 갖는 데 도움을 제공할 것이다. 또한 복제, 자동 샤딩, 배포 book.naver.com 8장 인덱스 파트를 요약 정리한 내용입니..
'이것이 MySQL이다' https://book.naver.com/bookdb/book_detail.nhn?bid=10652258 이것이 MySQL이다 『이것이 MYSQL이다』는 MYSQL의 고급 기술을 다루는 기술서가 아니다. 실무 환경에서 이뤄지는 MYSQL의 실제 사용 사례를 실습을 통해 학습자가 체험하면서 배울 수 있게 한다. 따라서 철저하게 MYSQL, 데이터베이스를 처음 시작하는 학습자 수준에 구성과 난이도를 맞추었다. 책에 수록된 실습은 책에 있는 그대로 이뤄진다. book.naver.com Chapter 9 인덱스 부분 요약 정리한 내용입니다. 전반 개념 1. 인덱스 데이터를 좀 더 빠르게 찾을 수 있도록 해 주는 도구 속성 값을 기준으로 이미 정렬되어 있고, 그에 해당하는 레코드 주소가 ..
Introduction to Computer Networking, Stanford University https://lagunita.stanford.edu/courses/Engineering/Networking-SP/SelfPaced/about Unit 7: Lower Layers 중 FEC and Reed-Solomon 파트 수업 필기 정리 FEC Forward Error Correction SNR / BER Curves when given a modulation scheme and SNR, you can compute expected BER(Bit Error Rate) BER can become low but never reaches zero! directly turning Link Layer Bit..
Introduction to Computer Networking, Stanford University https://lagunita.stanford.edu/courses/Engineering/Networking-SP/SelfPaced/about Unit 7: Lower Layers 중 Clocks and Clock Recovery 파트 수업 필기 정리 Clocks data is transmitted using a 'clock' the receiver needs to know when to sample the arriving data when the clocks are running at different speed how different are these clocks? units of parts per..
Introduction to Computer Networking, Stanford University https://lagunita.stanford.edu/courses/Engineering/Networking-SP/SelfPaced/about Unit 7: Lower Layers 중 Bit Errors 파트 수업 필기 정리 (recall) Shannon Limit the capacity of a communication channel Bandwidth * log₂(1 + S/N) Bandwidth typically fixed SNR: Possible data rate bounded by the Signal to Noise Ratio Stronger signal or lower noise → transm..
Introduction to Computer Networking, Stanford University https://lagunita.stanford.edu/courses/Engineering/Networking-SP/SelfPaced/about Unit 7: Lower Layers 중 Shannon Capacity and Modulation 파트 수업 필기 정리 Physical Layer Capacity bits per second that a given physical layer can support Modulation representation of the capacity on the medium(like channel) Symbols vs. Bits Symbol: the unit of transfe..
mongoDB에 find 쿼리를 수행하던 중 projection이 적용되지 않는 문제가 발생했다. collection.find({id: id},{followmap:1}).toArray(function(err, followmaps) { ... }); id 값을 받아서, 해당 document의 내용 중 'followmap'이라는 필드의 값만 불러와야 하는데, 자꾸 전체 필드값이 리턴되는 것이 문제였다. MongoDB의 shell 쿼리에서는 맞는 문법이지만, node.js 드라이버에서는 그게 적용되지 않는 것 같았다. API docs를 찾아보니 안 되는 이유가 있었다. (참고: https://mongodb.github.io/node-mongodb-native/3.2/api/Collection.html#find..