Sergey Zhukov

Results 20 comments of Sergey Zhukov

I was able to run tflearn with GPU support on windows 10 - 64 bit. Here are the steps to install. 1. Install Python 3.5 (64 bit) from Anaconda. https://repo.continuum.io/archive/Anaconda3-4.2.0-Windows-x86_64.exe...

`ThreadPool` config values just an example and you should tune these values according to your application usage. If it creates alot of parallel network requests you should increase number of...

HyperFastCGI do it exactly the same way like ASP.NET does - aborts currently running threads and shuts down the application. If it will wait till all requests are served it...

This is nginx configuration issue. You have to remove duplicated params from the configuration files. I don't think that overwriting the param with last value is a good choice because...

"Directives set in current level clear any previously defined directives for the current level". This means that nginx should overwrite the value was previously set but it adds another one...

@deluvas remove duplicating FCGI_PARAMS from nginx config. The issue was mentioned above about param ordering not about duplicating.

This is a known issue - hyperfastcgi 0.4 does not gracefully handles `web.config` change or changes in `bin` directory. I hope can fix this soon. Currently as a workaround you...

I know how to reproduce this issue, so at this moment I just need some time to implement correct Application Domain reloading. The issue relates both to managed and unmanaged...

Please show the output of the `hyperfastcgi4` command with loglevels=All ``` hyperfastcgi4 /config=/usr/local/server.config /logfile=/usr/local/HyperFastCgi/logging.log /loglevels=All ```

The most possible reason of the error that HyperFastCgi.dll is not registered in the GAC. Did you do `make install` to install the library? I've never checked installation procedure on...