Arron
Arron
It's `brew install gtk+3`, I build success on MacOS Monterey.
@dr-orlovsky brew has not package `libcanberra-gtk-module` and `libcanberra-gtk3-module` too. I ignore it and build success. ➜ mycitadel-desktop git:(master) ✗ brew search libcanberra ==> Formulae libcanberra libcaca ==> Casks libcblite
Hi, mongoq method will create new connection for db. It has not any public method for db with the same server(connection) now. You can create new connection like your sample....
A example: ``` var server = new mongoq.mongodb.Server('localhost', 27017); var db1 = new mongoq.db("db1", server); var db2 = new mongoq.db("db2", server); ```
At first, MongoQ depends on onde-mongodb-native. It said that node-mongodb-native can't support multiple Db with the same server(connection). It seems that you have to create two server to deal with...
关于mmseg的算法我没具体分析过, 我这只是 http://www.coreseek.cn/opensource/mmseg/ 的[node c++扩展](http://nodejs.org/docs/latest/api/addons.html)。 现在这个是同步执行的, 异步的问题使用node的c++扩展异步api就成了,这个没做。
23万次每秒够需求了。 我下次在做这类项目的时候用你那个试试。 毕竟不用依赖c++
另外还有一哥们也是用js写分词的,有兴趣可以关注一下。 https://github.com/leizongmin/node-segment
@vanderbr Yes, it's MIT. https://github.com/rnostr/rnostr/blob/275d7408c09d018e1a9d7870d7385ad74f84c090/Cargo.toml#L39C1-L39C8
You can refer to [the docker instructions](https://github.com/rnostr/rnostr?tab=readme-ov-file#docker) to execute the docker command. ```sh docker run -it --rm \ --user=$(id -u) \ -v $(pwd)/data:/rnostr/data \ -v $(pwd)/config:/rnostr/config \ --name rnostr rnostr/rnostr:latest...