本文主要是介绍mongodb newlisp driver v0.1.0 发布,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一直以来,没有newlisp直接访问mongodb 的方式,今天发布了v0.1.0版本,可以让newlisp通过mongdb c driver访问mongodb server.
下面是例子代码:
#!/usr/bin/newlisp(load "mongo.lsp")
(mongo:init)
(set 'client-ptr (mongo:connect "mongodb://127.0.0.1/"))
(set 'db-ptr (mongo:get-db client-ptr "kaimei"))
(println "db-ptr: " db-ptr)(set 'db-name (mongo:get-db-name db-ptr))
(println "db-name: " db-name)(mongo:destroy-db db-ptr)
(mongo:destroy-client client-ptr)
(mongo:cleanup)(exit)
项目已经在gitlab.com上开源,链接地址为:https://gitlab.com/newlisp/mongo-driver
目前支持的函数不多,后面会逐渐增加。
Index
Module: mongo
Release all resources associated with client and free the structure.
init cleanup connect get-db get-db-name destroy-db destroy-client get-coll这篇关于mongodb newlisp driver v0.1.0 发布的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!