-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This will allow multiple HTTP servers to be multiplexed on the same port on the HTTP end. This is useful to bypass the limitation in Julia where a `ccall` blocks all tasks in the process. With this change multiple HTTP clients can get requests serviced simultaneously using more than one servers. The HTTP ends can further talk to one or more backends as needed.
- Loading branch information
Showing
3 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ using Logging | |
using ZMQ | ||
using Base.Test | ||
using Requests | ||
using JSON | ||
|
||
Logging.configure(level=INFO) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ using HttpCommon | |
using Logging | ||
using Compat | ||
using ZMQ | ||
using JSON | ||
|
||
include("srvrfn.jl") | ||
|
||
|