검색결과 리스트
글
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
자바스크립트를실행하기위해 db.eval명령어와 system.js 컬렉션을이용할수있다.
>db.eval("return 'hello neo'")
hello neo
system.js에 name이라는변수를저장
>db.system.js.insert( { "_id" : "name", "value" :"neo" } )
>db.eval("function(n) { return n + ' ' + name; }", ['hello'])
hello neo
system.js에 helloName이라는함수를저장
>db.system.js.save( {
"_id" : "helloName",
"value" : function(n) { return 'hello ' + n; }
})
>db.eval("return helloName('neo');")
hello neo
'-- MongoDB' 카테고리의 다른 글
[MongoDB] 복제 셋 (Replica set) (0) | 2013.01.14 |
---|---|
[MongoDB] 백업과 복구 (0) | 2013.01.14 |
[MongoDB] Database 명령어 (0) | 2013.01.08 |
[MongoDB] 집계 (0) | 2013.01.07 |
[MongoDB] 초보자를 위한 보안 관련 Tips (0) | 2013.01.07 |
RECENT COMMENT