일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- data science
- nodeJS
- 딥러닝
- 빅데이타
- 주일설교
- c++
- Artificial Intelligence
- Big Data
- 데이터 과학
- R
- 확률
- 몽고디비
- 우리들교회
- 인공지능
- 통계
- 김양재
- Deep learning
- Statistics
- 빅데이터
- probability
- MongoDB
- No SQL
- WebGL
- node.js
- openCV
- 김양재 목사님
- 빅 데이타
- 빅 데이터
- 김양재 목사
- Machine Learning
- Today
- Total
목록몽고 (4)
Scientific Computing & Data Science
Written by Geol Choi | Jan. 21, 2014 Server-side 네트워크 프로그램 제작용 프레임웍인 Node.js와 Mongo DB를 연동하는 법에 대해 알아보도록 하겠습니다. 설명방식은 Node.js의 설치하는 것으로부터 시작되는 철저히 따라하기 예제 방식이며, 가장 기초적인 부분을 다루도록 하겠습니다. 따라서, 이미 어느 정도 Node.js에 대해 익숙한 분들은 초반부분을 스킵하고 연동하는 부분만 집중하시기 바합니다. Node.js를 통해 Mongo DB의 서버와 연결(connect)하고 Mongo DB의 스키마(schema)와 모델(또는 컬렉션)을 생성하는 방법을 알아보겠습니다. 또한 DB에 컬렉션을 추가하고 저장하는 방법에 대해 알아보도록 하겠습니다. 설명은 Mac OS X..
Written by cinema4dSometimes you may want to modify only a certain portion of document. Using update modifiers you can do that by atomic level such as altering, adding or removing keys and even manipulating arrays and embedded documents. Assume that you have three webpages to manage and you are going to update pageviews - automatically increase by 1 when visiting. Type the following for data pre..
Written by cinema4dCreate"title", "content", "date" 키를 갖는 "post" 변수 생성 :> post = {"title" : "My first blog post", ... "content" : "Getting started with MongDB", ... "date" : new Date()} { "title" : "My fist blog post", "content" : "Getting started with MongDB", "date" : ISODate("2014-01-13T14:40:39.232Z") }insert 메써드를 이용하여 "post" 변수를 "blog" 콜렉션에 저장 :> db.blog.insert(post)find 메써드를 입력하면 "blog" 콜렉..
Written by cinema4dMac에서 Terminal을 실행하여 MongoDB가 설치된 곳으로 path 이동한다.cd [root_path]/mongodb-osx-x86_64-2.4.8/bin다음과 같이 입력해 본다. (Windows에서는 "mongod.exe"를 실행한다)./mongod ./mongod --help for help and startup options Mon Jan 13 22:52:41.258 [initandlisten] MongoDB starting : pid=674 port=27017 dbpath=/data/db/ 64-bit host=Geol-ui-MacBook-Pro.local Mon Jan 13 22:52:41.259 [initandlisten] Mon Jan 13 22:5..