concurrent-ruby-ext 1.0.0.pre2-x86-mingw32 → 1.0.0.pre3-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -2
- data/README.md +7 -5
- data/lib/concurrent/1.9/extension.so +0 -0
- data/lib/concurrent/2.0/extension.so +0 -0
- data/lib/concurrent/2.1/extension.so +0 -0
- data/lib/concurrent/2.2/extension.so +0 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba7cb35de7cde093af2700c33f65ced2e0e8cf35
|
4
|
+
data.tar.gz: 96afee1d3871deb836e3a6eb34769447593b7ae0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c138aef683ea6ac23f96c8abea87e878f4dfc34dffeffbbf325c9cac866a2d1bf328c3b2902c9e0b150169c0867219fd6ffdad3b203f90b7cc44c1791c88b3e3
|
7
|
+
data.tar.gz: 92e9c11c11d821b351930ccc7f47c995ef86e3cbef1ed244fdb7a39d29464166652a154b60693d7e8c03e3155914f9b90993982faf57dab6c77ab2d14d3a2d2e
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,15 @@
|
|
1
|
-
|
1
|
+
### Upcoming Release v1.0.0 (TBD)
|
2
|
+
|
3
|
+
## Current Release v1.0.0.pre3 (29 September 2015)
|
4
|
+
|
5
|
+
* Removed interpreter warnings.
|
6
|
+
* Shared constants now in `lib/concurrent/constants.rb`
|
7
|
+
* Refactored many tests.
|
8
|
+
* Improved synchronization layer/memory model documentation.
|
9
|
+
* Bug fix in Edge `Future#flat`
|
10
|
+
* Brand new `Channel` implementation in Edge gem.
|
11
|
+
|
12
|
+
### Release v1.0.0.pre2 (19 September 2015)
|
2
13
|
|
3
14
|
* Simplification of `RubySingleThreadExecutor`
|
4
15
|
* `Async` improvements
|
@@ -10,8 +21,9 @@
|
|
10
21
|
- Now `Observable`
|
11
22
|
- Added a `#reset` method
|
12
23
|
* Brand new `Agent` API and implementation. Now functionally equivalent to Clojure.
|
24
|
+
* Continued improvements to the synchronization layer
|
13
25
|
|
14
|
-
###
|
26
|
+
### Release v1.0.0.pre1 (19 August 2015)
|
15
27
|
|
16
28
|
* Merged in the `thread_safe` gem
|
17
29
|
- `Concurrent::Array`
|
data/README.md
CHANGED
@@ -130,8 +130,10 @@ be obeyed though. Features developed in `concurrent-ruby-edge` are expected to m
|
|
130
130
|
`Promise`, `IVar`, `Event`, `dataflow`, `Delay`, and `TimerTask` into a single framework. It extensively uses the
|
131
131
|
new synchronization layer to make all the features **non-blocking** and **lock-free**, with the exception of obviously blocking
|
132
132
|
operations like `#wait`, `#value`. It also offers better performance.
|
133
|
-
* [Channel](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Channel.html):
|
134
|
-
Communicating Sequential Processes (CSP).
|
133
|
+
* [Channel](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Edge/Channel.html):
|
134
|
+
Communicating Sequential Processes ([CSP](https://en.wikipedia.org/wiki/Communicating_sequential_processes)).
|
135
|
+
Functionally equivalent to Go [channels](https://tour.golang.org/concurrency/2) with additional
|
136
|
+
inspiration from Clojure [core.async](https://clojure.github.io/core.async/).
|
135
137
|
* [LazyRegister](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/LazyRegister.html)
|
136
138
|
* [AtomicMarkableReference](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Edge/AtomicMarkableReference.html)
|
137
139
|
* [LockFreeLinkedSet](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Edge/LockFreeLinkedSet.html)
|
@@ -142,10 +144,10 @@ be obeyed though. Features developed in `concurrent-ruby-edge` are expected to m
|
|
142
144
|
*Why are these not in core?*
|
143
145
|
|
144
146
|
- **Actor** - Partial documentation and tests; depends on new future/promise framework; stability is good.
|
145
|
-
- **
|
146
|
-
- **
|
147
|
+
- **Channel** - Brand new implementation; partial documentation and tests; stability is good.
|
148
|
+
- **Future/Promise Framework** - API changes; partial documentation and tests; stability is good.
|
147
149
|
- **LazyRegister** - Missing documentation and tests.
|
148
|
-
- **AtomicMarkableReference, LockFreeLinkedSet, LockFreeStack** - Need real world battle testing
|
150
|
+
- **AtomicMarkableReference, LockFreeLinkedSet, LockFreeStack** - Need real world battle testing.
|
149
151
|
|
150
152
|
## Usage
|
151
153
|
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: concurrent-ruby-ext
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.pre3
|
5
5
|
platform: x86-mingw32
|
6
6
|
authors:
|
7
7
|
- Jerry D'Antonio
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-09-
|
12
|
+
date: 2015-09-30 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: concurrent-ruby
|
@@ -17,14 +17,14 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - "~>"
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 1.0.0.
|
20
|
+
version: 1.0.0.pre3
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - "~>"
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 1.0.0.
|
27
|
+
version: 1.0.0.pre3
|
28
28
|
description: |2
|
29
29
|
C extensions to optimize the concurrent-ruby gem when running under MRI.
|
30
30
|
Please see http://concurrent-ruby.com for more information.
|