Dmitry Selivanov

Results 53 issues of Dmitry Selivanov

[SO topic](http://stackoverflow.com/questions/31851640/long-time-to-import-data-using-mongo-find-all-rmongodb) To improve performance we have to preallocate memory for fetch result, when size of dataset known in advance.

enhancement

replace `rand()` and `srand()` in _src/libmongo/bson.c_ by correct [R version](http://cran.r-project.org/doc/manuals/r-release/R-exts.html#Random-numbers).

enhancement

[stackoverflow question](http://stackoverflow.com/questions/26780524/can-r-connect-to-an-ssl-protected-mongodb-instance) Fix this or add method with port forwarding to docs. ``` ssh -fNg -L source-port:10.0.0.80:destination-port [email protected] ```

enhancement
question
documentation

Try ``` R mtcars %>% ggvis(~wt, ~mpg, stroke = ~as.character(gear)) %>% layer_points() %>% layer_lines() ``` and ``` R mtcars_dt % ggvis(~wt, ~mpg, stroke = ~as.character(gear)) %>% layer_points() %>% layer_lines() ```

Hi Yixuan. Thanks for starting this. What do you think about `partial_fit` fit method (similar to `scikit-learn` API)? Since we are fitting neural network with SGD, it is natural to...

When playing locally and subscribing to nsqd running on localhost, the name `localhost` resolves successfully and consumer can connect. However when I've tested with docker-compose names of the services are...

Hi! thanks for your work. I have question (probably dummy). Do we have any workaround when we want to expose multiple constructors?

- fix problems with json parsing for API generation - regenerate API to support redis 5.0 (redis doc commit db399bb9f3871a749bc14cc9d60761a7bfd73cf8) - add .o. .so to gitignore

Hi Simon. Is there any way in 1.8.* series on how to manage shared resources between processes? My case is that I need somehow maintain connection pool to a database....