목록MongoDB/쿼리 (3)
코드 잡동사니
MongoDB js 추가 사용
db.eval 함수는 3.0 이후로 deprecated 되어있으므로 아래와 같은 방법을 사용하자//저장db.system.js.save({_id: "add", value: function(a,b){ return a+b; }}); //사용db.loadServerScripts()add(2,3)
MongoDB/쿼리
2019. 3. 7. 16:53
몽고DB 정보 얻기
show dbsshow collections == show tablesdb.stats() db..stats() 로도 사용가능
MongoDB/쿼리
2018. 5. 7. 18:06