polyphony 0.41 → 0.43.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +30 -0
- data/Gemfile.lock +6 -6
- data/README.md +0 -1
- data/Rakefile +1 -1
- data/TODO.md +18 -9
- data/docs/_config.yml +56 -7
- data/docs/_sass/custom/custom.scss +6 -26
- data/docs/_sass/overrides.scss +0 -46
- data/docs/{user-guide → _user-guide}/all-about-timers.md +0 -0
- data/docs/_user-guide/index.md +9 -0
- data/docs/{user-guide → _user-guide}/web-server.md +0 -0
- data/docs/api-reference/index.md +9 -0
- data/docs/api-reference/polyphony-process.md +1 -1
- data/docs/api-reference/thread.md +1 -1
- data/docs/faq.md +21 -11
- data/docs/favicon.ico +0 -0
- data/docs/getting-started/index.md +10 -0
- data/docs/getting-started/installing.md +2 -6
- data/docs/getting-started/overview.md +486 -0
- data/docs/getting-started/tutorial.md +27 -19
- data/docs/index.md +6 -2
- data/docs/main-concepts/concurrency.md +0 -5
- data/docs/main-concepts/design-principles.md +2 -12
- data/docs/main-concepts/index.md +9 -0
- data/docs/polyphony-logo.png +0 -0
- data/examples/adapters/concurrent-ruby.rb +9 -0
- data/examples/adapters/redis_blpop.rb +12 -0
- data/examples/core/01-spinning-up-fibers.rb +1 -0
- data/examples/core/03-interrupting.rb +4 -1
- data/examples/core/04-handling-signals.rb +19 -0
- data/examples/core/xx-daemon.rb +14 -0
- data/examples/performance/thread-vs-fiber/polyphony_server.rb +6 -18
- data/examples/performance/thread-vs-fiber/polyphony_server_read_loop.rb +58 -0
- data/examples/performance/xx-array.rb +11 -0
- data/examples/performance/xx-fiber-switch.rb +9 -0
- data/examples/performance/xx-snooze.rb +15 -0
- data/ext/polyphony/fiber.c +0 -3
- data/ext/polyphony/libev_agent.c +303 -81
- data/ext/polyphony/libev_queue.c +8 -5
- data/ext/polyphony/polyphony.c +0 -16
- data/ext/polyphony/polyphony.h +6 -6
- data/ext/polyphony/polyphony_ext.c +0 -2
- data/ext/polyphony/thread.c +8 -42
- data/lib/polyphony.rb +29 -2
- data/lib/polyphony/adapters/redis.rb +3 -2
- data/lib/polyphony/core/channel.rb +2 -2
- data/lib/polyphony/core/global_api.rb +6 -4
- data/lib/polyphony/core/resource_pool.rb +19 -9
- data/lib/polyphony/extensions/core.rb +8 -3
- data/lib/polyphony/extensions/fiber.rb +0 -12
- data/lib/polyphony/extensions/io.rb +4 -0
- data/lib/polyphony/extensions/openssl.rb +34 -10
- data/lib/polyphony/extensions/socket.rb +2 -2
- data/lib/polyphony/version.rb +1 -1
- data/polyphony.gemspec +1 -1
- data/test/test_agent.rb +59 -6
- data/test/test_fiber.rb +3 -3
- data/test/test_global_api.rb +48 -15
- data/test/test_resource_pool.rb +12 -0
- data/test/test_socket.rb +5 -4
- data/test/test_throttler.rb +6 -5
- metadata +21 -21
- data/docs/_includes/head.html +0 -40
- data/docs/_includes/nav.html +0 -51
- data/docs/_includes/prevnext.html +0 -17
- data/docs/_layouts/default.html +0 -106
- data/docs/api-reference.md +0 -11
- data/docs/api-reference/gyro-async.md +0 -57
- data/docs/api-reference/gyro-child.md +0 -29
- data/docs/api-reference/gyro-queue.md +0 -44
- data/docs/api-reference/gyro-timer.md +0 -51
- data/docs/api-reference/gyro.md +0 -25
- data/docs/getting-started.md +0 -10
- data/docs/main-concepts.md +0 -10
- data/docs/user-guide.md +0 -10
- data/examples/core/forever_sleep.rb +0 -19
- data/ext/polyphony/socket.c +0 -213
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f48ef7d009af377b337388a1cca2eb4fe16b85deb1f37076fcd40e010aa9c0e3
|
4
|
+
data.tar.gz: 7b4fa6e8951dc52fd3fdcc9b5a2f1974155e2b709d71de593657374de5020c88
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8de0f7526767acef9487417efb79c528312905adc4daed2664e8781ddfffa82118812407c2632269f8c6df0ba91733723804bad027e67cd5094aa1855241d8b4
|
7
|
+
data.tar.gz: 94f5f80ec12f9fba315ce76495f7792125190a2e2004b455a79d58912cac523cd07f90f62218823126023a4003e4f08281676d899737f30d271d5c981f191d04
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,33 @@
|
|
1
|
+
## 0.43.3 2020-07-08
|
2
|
+
|
3
|
+
* Fix behaviour after call to `Process.daemon` (#8)
|
4
|
+
* Replace core `Queue` class with `Polyphony::Queue` (#22)
|
5
|
+
* Make `ResourcePool` reentrant (#1)
|
6
|
+
* Accept `:with_exception` argument in `cancel_after` (#16)
|
7
|
+
|
8
|
+
## 0.43.2 2020-07-07
|
9
|
+
|
10
|
+
* Fix sending Redis commands with array arguments (#21)
|
11
|
+
|
12
|
+
## 0.43.1 2020-06
|
13
|
+
|
14
|
+
* Fix compiling C-extension on MacOS (#20)
|
15
|
+
|
16
|
+
## 0.43 2020-07-05
|
17
|
+
|
18
|
+
* Add IO#read_loop
|
19
|
+
* Fix OpenSSL extension
|
20
|
+
* More work on docs
|
21
|
+
|
22
|
+
## 0.42 2020-07-03
|
23
|
+
|
24
|
+
* Improve documentation
|
25
|
+
* Fix backtrace on SIGINT
|
26
|
+
* Implement LibevAgent#accept_loop, #read_loop
|
27
|
+
* Move ref counting from thread to agent
|
28
|
+
* Short circuit switchpoint if continuing with the same fiber
|
29
|
+
* Always do a switchpoint in #read, #write, #accept
|
30
|
+
|
1
31
|
## 0.41 2020-06-27
|
2
32
|
|
3
33
|
* Introduce System Agent design, remove all `Gyro` classes
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
polyphony (0.
|
4
|
+
polyphony (0.43.3)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
@@ -12,7 +12,7 @@ GEM
|
|
12
12
|
ast (2.4.0)
|
13
13
|
builder (3.2.4)
|
14
14
|
colorator (1.1.0)
|
15
|
-
concurrent-ruby (1.1.
|
15
|
+
concurrent-ruby (1.1.6)
|
16
16
|
docile (1.3.2)
|
17
17
|
em-websocket (0.5.1)
|
18
18
|
eventmachine (>= 0.12.9)
|
@@ -51,10 +51,10 @@ GEM
|
|
51
51
|
jekyll-watch (2.2.1)
|
52
52
|
listen (~> 3.0)
|
53
53
|
json (2.3.0)
|
54
|
-
just-the-docs (0.
|
55
|
-
jekyll (
|
54
|
+
just-the-docs (0.3.0)
|
55
|
+
jekyll (>= 3.8.5)
|
56
56
|
jekyll-seo-tag (~> 2.0)
|
57
|
-
rake (
|
57
|
+
rake (>= 12.3.1, < 13.1.0)
|
58
58
|
kramdown (1.17.0)
|
59
59
|
liquid (4.0.3)
|
60
60
|
listen (3.2.1)
|
@@ -126,7 +126,7 @@ DEPENDENCIES
|
|
126
126
|
jekyll (~> 3.8.6)
|
127
127
|
jekyll-remote-theme (~> 0.4.1)
|
128
128
|
jekyll-seo-tag (~> 2.6.1)
|
129
|
-
just-the-docs (~> 0.
|
129
|
+
just-the-docs (~> 0.3.0)
|
130
130
|
localhost (= 1.1.4)
|
131
131
|
minitest (= 5.13.0)
|
132
132
|
minitest-reporters (= 1.4.2)
|
data/README.md
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
# Polyphony - Fine-Grained Concurrency for Ruby
|
2
2
|
|
3
|
-
|
4
3
|
[](http://rubygems.org/gems/polyphony)
|
5
4
|
[](https://github.com/digital-fabric/polyphony/actions?query=workflow%3ATests)
|
6
5
|
[](https://github.com/digital-fabric/polyphony/blob/master/LICENSE)
|
data/Rakefile
CHANGED
@@ -20,7 +20,7 @@ task :stress_test do
|
|
20
20
|
end
|
21
21
|
|
22
22
|
task :docs do
|
23
|
-
exec 'RUBYOPT=-W0 jekyll serve -s docs'
|
23
|
+
exec 'RUBYOPT=-W0 jekyll serve -s docs -H ec2-35-158-110-38.eu-central-1.compute.amazonaws.com'
|
24
24
|
end
|
25
25
|
|
26
26
|
CLEAN.include "**/*.o", "**/*.so", "**/*.bundle", "**/*.jar", "pkg", "tmp"
|
data/TODO.md
CHANGED
@@ -1,8 +1,9 @@
|
|
1
|
-
## 0.
|
1
|
+
## 0.43
|
2
2
|
|
3
|
-
-
|
4
|
-
|
5
|
-
|
3
|
+
- Reimplement ResourcePool, Channel, Mutex using LibevQueue
|
4
|
+
-- Add `Fiber#schedule_with_priority` method, aliased by `Fiber#wakeup`
|
5
|
+
- Implement agent interface is virtual function table
|
6
|
+
- Implement proxy agent for plugging in a user-provided agent class
|
6
7
|
|
7
8
|
- Debugging
|
8
9
|
- Eat your own dogfood: need a good tool to check what's going on when some
|
@@ -116,7 +117,10 @@
|
|
116
117
|
- explain difference between `sleep` and `suspend`
|
117
118
|
- discuss using `snooze` for ensuring responsiveness when executing CPU-bound work
|
118
119
|
|
119
|
-
|
120
|
+
|
121
|
+
## 0.44
|
122
|
+
|
123
|
+
### Some more API work, more docs
|
120
124
|
|
121
125
|
- sintra app with database access (postgresql)
|
122
126
|
|
@@ -126,11 +130,16 @@
|
|
126
130
|
- test performance
|
127
131
|
- proceed from there
|
128
132
|
|
129
|
-
|
133
|
+
|
134
|
+
## 0.45
|
135
|
+
|
136
|
+
### Sinatra / Sidekiq
|
130
137
|
|
131
138
|
- Pull out redis/postgres code, put into new `polyphony-xxx` gems
|
132
139
|
|
133
|
-
## 0.46
|
140
|
+
## 0.46
|
141
|
+
|
142
|
+
### Testing && Docs
|
134
143
|
|
135
144
|
- More tests
|
136
145
|
- Implement some basic stuff missing:
|
@@ -140,9 +149,9 @@
|
|
140
149
|
- `IO.foreach`
|
141
150
|
- `Process.waitpid`
|
142
151
|
|
143
|
-
## 0.47
|
152
|
+
## 0.47
|
144
153
|
|
145
|
-
|
154
|
+
### Real IO#gets and IO#read
|
146
155
|
|
147
156
|
## 0.48 DNS
|
148
157
|
|
data/docs/_config.yml
CHANGED
@@ -1,15 +1,64 @@
|
|
1
1
|
title: "Polyphony"
|
2
|
+
description: Fine-grained concurrency for Ruby
|
2
3
|
|
4
|
+
plugins:
|
5
|
+
- jekyll-remote-theme
|
6
|
+
|
7
|
+
permalink: pretty
|
3
8
|
remote_theme: pmarsceill/just-the-docs
|
4
|
-
color_scheme:
|
9
|
+
color_scheme: light
|
5
10
|
|
6
11
|
search_enabled: true
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
+
search:
|
13
|
+
# Split pages into sections that can be searched individually
|
14
|
+
# Supports 1 - 6, default: 2
|
15
|
+
heading_level: 2
|
16
|
+
# Maximum amount of previews per search result
|
17
|
+
# Default: 3
|
18
|
+
previews: 3
|
19
|
+
# Maximum amount of words to display before a matched word in the preview
|
20
|
+
# Default: 5
|
21
|
+
preview_words_before: 5
|
22
|
+
# Maximum amount of words to display after a matched word in the preview
|
23
|
+
# Default: 10
|
24
|
+
preview_words_after: 10
|
25
|
+
# Set the search token separator
|
26
|
+
# Default: /[\s\-/]+/
|
27
|
+
# Example: enable support for hyphenated search words
|
28
|
+
tokenizer_separator: /[\s/]+/
|
29
|
+
# Display the relative url in search results
|
30
|
+
# Supports true (default) or false
|
31
|
+
rel_url: true
|
32
|
+
# Enable or disable the search button that appears in the bottom right corner of every page
|
33
|
+
# Supports true or false (default)
|
34
|
+
button: false
|
12
35
|
|
13
36
|
aux_links:
|
14
37
|
"Polyphony on GitHub":
|
15
|
-
- "//github.com/digital-fabric/polyphony"
|
38
|
+
- "//github.com/digital-fabric/polyphony"
|
39
|
+
|
40
|
+
# Makes Aux links open in a new tab. Default is false
|
41
|
+
aux_links_new_tab: false
|
42
|
+
|
43
|
+
# Enable or disable heading anchors
|
44
|
+
heading_anchors: true
|
45
|
+
|
46
|
+
back_to_top: true
|
47
|
+
back_to_top_text: "Back to top"
|
48
|
+
|
49
|
+
footer_content: "Copyright © 2020 Sharon Rosner. Distributed by an <a href=\"https://github.com/digital-fabric/polyphony/tree/master/LICENSE\">MIT license.</a>"
|
50
|
+
|
51
|
+
# Footer "Edit this page on GitHub" link text
|
52
|
+
gh_edit_link: true # show or hide edit this page link
|
53
|
+
gh_edit_link_text: "Edit this page on GitHub"
|
54
|
+
gh_edit_repository: "https://github.com/digital-fabric/polyphony" # the github URL for your repo
|
55
|
+
gh_edit_branch: "master/docs" # the branch that your docs is served from
|
56
|
+
gh_edit_view_mode: "tree" # "tree" or "edit" if you want the user to jump into the editor immediately
|
57
|
+
|
58
|
+
compress_html:
|
59
|
+
clippings: all
|
60
|
+
comments: all
|
61
|
+
endings: all
|
62
|
+
startings: []
|
63
|
+
blanklines: false
|
64
|
+
profile: false
|
@@ -1,30 +1,10 @@
|
|
1
|
-
$nav-child-link-color: #9d9b9e;
|
2
|
-
$link-color: $blue-000;
|
3
1
|
|
4
|
-
.
|
5
|
-
|
2
|
+
h1.logo-title {
|
3
|
+
font-size: 42px !important;
|
4
|
+
font-weight: bold;
|
6
5
|
}
|
7
6
|
|
8
|
-
|
9
|
-
|
7
|
+
h2.logo-title {
|
8
|
+
margin-top: 0.25em;
|
9
|
+
margin-bottom: 1em;
|
10
10
|
}
|
11
|
-
|
12
|
-
#prevnext span {
|
13
|
-
}
|
14
|
-
|
15
|
-
#prevnext span.prev {
|
16
|
-
float: left;
|
17
|
-
padding-right: 4em;
|
18
|
-
}
|
19
|
-
|
20
|
-
#prevnext span.next {
|
21
|
-
float: right;
|
22
|
-
}
|
23
|
-
|
24
|
-
#prevnext span.clear {
|
25
|
-
clear: both;
|
26
|
-
}
|
27
|
-
|
28
|
-
.h-align-center {
|
29
|
-
text-align: center;
|
30
|
-
}
|
data/docs/_sass/overrides.scss
CHANGED
@@ -1,46 +0,0 @@
|
|
1
|
-
.navigation-list-item.section-title {
|
2
|
-
padding-top: 0.75em;
|
3
|
-
padding-bottom: 0.75em;
|
4
|
-
}
|
5
|
-
|
6
|
-
span.section-title {
|
7
|
-
text-transform: uppercase;
|
8
|
-
font-weight: bold;
|
9
|
-
color: #888;
|
10
|
-
}
|
11
|
-
|
12
|
-
.navigation-list-item .navigation-list-child-list {
|
13
|
-
display: block;
|
14
|
-
}
|
15
|
-
|
16
|
-
.navigation-list-child-list {
|
17
|
-
padding-left: 0;
|
18
|
-
|
19
|
-
.navigation-list-item {
|
20
|
-
position: relative;
|
21
|
-
|
22
|
-
&::before {
|
23
|
-
position: absolute;
|
24
|
-
margin-top: 0.3em;
|
25
|
-
margin-left: -0.8em;
|
26
|
-
color: rgba($body-text-color, 0.3);
|
27
|
-
content: "";
|
28
|
-
}
|
29
|
-
}
|
30
|
-
}
|
31
|
-
|
32
|
-
a.navigation-list-link {
|
33
|
-
margin-left: 4px;
|
34
|
-
padding-left: 4px;
|
35
|
-
color: $nav-child-link-color;
|
36
|
-
font-weight: 600;
|
37
|
-
}
|
38
|
-
|
39
|
-
a.navigation-list-link.active {
|
40
|
-
margin-left: 0;
|
41
|
-
border-left: 4px #6ae solid;
|
42
|
-
}
|
43
|
-
|
44
|
-
a.navigation-list-link:hover {
|
45
|
-
color: $link-color;
|
46
|
-
}
|
File without changes
|
File without changes
|
@@ -23,6 +23,6 @@ shell command. If a block is given, the child process is started using
|
|
23
23
|
[`Polyphony#fork`](../polyphony/#fork-block---pid).
|
24
24
|
|
25
25
|
```ruby
|
26
|
-
Polyphony::Process.watch('echo "Hello World"; sleep 1')
|
26
|
+
spin { Polyphony::Process.watch('echo "Hello World"; sleep 1') }
|
27
27
|
supervise(restart: :always)
|
28
28
|
```
|
@@ -12,7 +12,7 @@ Polyphony enhances the core `Thread` class with APIs for switching and
|
|
12
12
|
scheduling fibers, and reimplements some of its APIs such as `Thread#raise`
|
13
13
|
using fibers which, incidentally, make it safe.
|
14
14
|
|
15
|
-
Each thread has its own run queue and its own
|
15
|
+
Each thread has its own run queue and its own system agent. While running
|
16
16
|
multiple threads does not result in true parallelism in MRI Ruby, sometimes
|
17
17
|
multithreading is inevitable, for instance when using third-party gems that
|
18
18
|
spawn threads, or when calling blocking APIs that are not fiber-aware.
|
data/docs/faq.md
CHANGED
@@ -3,9 +3,19 @@ layout: page
|
|
3
3
|
title: Frequently Asked Questions
|
4
4
|
nav_order: 100
|
5
5
|
---
|
6
|
+
|
6
7
|
# Frequently Asked Questions
|
8
|
+
{: .no_toc }
|
9
|
+
|
10
|
+
## Table of contents
|
11
|
+
{: .no_toc .text-delta }
|
12
|
+
|
13
|
+
- TOC
|
14
|
+
{:toc}
|
15
|
+
|
16
|
+
---
|
7
17
|
|
8
|
-
|
18
|
+
## Why not just use callbacks instead of fibers?
|
9
19
|
|
10
20
|
It is true that reactor engines such as libev use callbacks to handle events.
|
11
21
|
There's also programming platforms such as [node.js](https://nodejs.org/) that
|
@@ -87,7 +97,7 @@ In conclusion:
|
|
87
97
|
* Callbacks often lead to code bloat.
|
88
98
|
* Callbacks are harder to debug.
|
89
99
|
|
90
|
-
|
100
|
+
## If callbacks suck, why not use promises?
|
91
101
|
|
92
102
|
Promises have gained a lot of traction during the last few years as an
|
93
103
|
alternative to callbacks, above all in the Javascript community. While promises
|
@@ -96,7 +106,7 @@ found to offer enough of a benefit. Promises still cause split logic, are quite
|
|
96
106
|
verbose and provide a non-native exception handling mechanism. In addition, they
|
97
107
|
do not make it easier to debug your code.
|
98
108
|
|
99
|
-
|
109
|
+
## Why is awaiting implicit? Why not use explicit async/await?
|
100
110
|
|
101
111
|
Actually, async/await was contemplated while developing Polyphony, but at a
|
102
112
|
certain point it was decided to abandon these methods / decorators in favor of a
|
@@ -108,7 +118,7 @@ Instead, we have decided to make blocking operations implicit and thus allow the
|
|
108
118
|
use of common APIs such as `Kernel#sleep` or `IO.popen` in a transparent manner.
|
109
119
|
After all, these APIs in their stock form block execution just as well.
|
110
120
|
|
111
|
-
|
121
|
+
## Why use `Fiber#transfer` and not `Fiber#resume`?
|
112
122
|
|
113
123
|
The API for `Fiber.yield`/`Fiber#resume` is stateful and is intended for the
|
114
124
|
asymmetric execution of coroutines. This is useful when using generators, or
|
@@ -118,7 +128,7 @@ between them, which is much easier to achieve using `Fiber#transfer`. In
|
|
118
128
|
addition, using `Fiber#transfer` allows us to perform blocking operations from
|
119
129
|
the main fiber, which is not possible when using `Fiber#resume`.
|
120
130
|
|
121
|
-
|
131
|
+
## Why does Polyphony reimplements core APIs such as `IO#read` and `Kernel#sleep`?
|
122
132
|
|
123
133
|
Polyphony "patches" some Ruby core and stdlib APIs, providing behavioraly
|
124
134
|
compatible fiber-aware implementations. We believe Polyphony has the potential
|
@@ -126,7 +136,7 @@ to profoundly change the way concurrent Ruby apps are written. Polyphony is
|
|
126
136
|
therefore designed to feel as much as possible like an integral part of the Ruby
|
127
137
|
runtime.
|
128
138
|
|
129
|
-
|
139
|
+
## Why is Polyphony not split into multiple gems?
|
130
140
|
|
131
141
|
Polyphony is currently at an experimental stage, and its different APIs are
|
132
142
|
still in flux. For that reason, all the different parts of Polyphony are
|
@@ -134,7 +144,7 @@ currently kept in a single gem. Once things stabilize, and as Polyphony
|
|
134
144
|
approaches version 1.0, it will be split into separate gems, each with its own
|
135
145
|
functionality.
|
136
146
|
|
137
|
-
|
147
|
+
## Can I use Polyphony in a multithreaded program?
|
138
148
|
|
139
149
|
Yes, as of version 0.27 Polyphony implements per-thread fiber-scheduling. It is
|
140
150
|
however important to note that Polyphony places the emphasis on a multi-fiber
|
@@ -148,7 +158,7 @@ are such a better fit for I/O bound Ruby programs. Threads should really be used
|
|
148
158
|
when performing synchronous operations that are not fiber-aware, such as running
|
149
159
|
an expensive SQLite query, or some other expensive system call.
|
150
160
|
|
151
|
-
|
161
|
+
## How Does Polyphony Fit Into the Ruby's Future Concurrency Plans
|
152
162
|
|
153
163
|
To our understanding, two things are currently on the horizon when it comes to
|
154
164
|
concurrency in Ruby: [auto-fibers](https://bugs.ruby-lang.org/issues/13618), and
|
@@ -167,18 +177,18 @@ Polyphony's fiber-based concurrency model. Guilds will allow true parallelism
|
|
167
177
|
and together with Polyphony will allow taking full advantage of multiple CPU
|
168
178
|
cores in a single Ruby process.
|
169
179
|
|
170
|
-
|
180
|
+
## Can I run Rails using Polyphony?
|
171
181
|
|
172
182
|
We haven't yet tested Rails with Polyphony, but most probably not. We do plan to
|
173
183
|
support running Rails in an eventual release.
|
174
184
|
|
175
|
-
|
185
|
+
## How can I contribute to Polyphony?
|
176
186
|
|
177
187
|
The Polyphony repository is at
|
178
188
|
[https://github.com/digital-fabric/polyphony](https://github.com/digital-fabric/polyphony).
|
179
189
|
Feel free to create issues and contribute pull requests.
|
180
190
|
|
181
|
-
|
191
|
+
## Who is behind this project?
|
182
192
|
|
183
193
|
I'm Sharon Rosner, an independent software developer living in France. Here's my
|
184
194
|
[github profile](https://github.com/ciconia). You can contact me by writing to
|