concurrent-c-node 0.4.1__tar.gz → 0.5.0__tar.gz
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.
- {concurrent_c_node-0.4.1 → concurrent_c_node-0.5.0}/PKG-INFO +11 -5
- {concurrent_c_node-0.4.1 → concurrent_c_node-0.5.0}/README.md +10 -4
- {concurrent_c_node-0.4.1 → concurrent_c_node-0.5.0}/concurrent_c_node.egg-info/PKG-INFO +11 -5
- {concurrent_c_node-0.4.1 → concurrent_c_node-0.5.0}/pyproject.toml +1 -1
- {concurrent_c_node-0.4.1 → concurrent_c_node-0.5.0}/cc_node/__init__.py +0 -0
- {concurrent_c_node-0.4.1 → concurrent_c_node-0.5.0}/cc_node/broker.cjs +0 -0
- {concurrent_c_node-0.4.1 → concurrent_c_node-0.5.0}/cc_node/examples/__init__.py +0 -0
- {concurrent_c_node-0.4.1 → concurrent_c_node-0.5.0}/cc_node/examples/bench_wire.py +0 -0
- {concurrent_c_node-0.4.1 → concurrent_c_node-0.5.0}/cc_node/examples/use_node.py +0 -0
- {concurrent_c_node-0.4.1 → concurrent_c_node-0.5.0}/concurrent_c_node.egg-info/SOURCES.txt +0 -0
- {concurrent_c_node-0.4.1 → concurrent_c_node-0.5.0}/concurrent_c_node.egg-info/dependency_links.txt +0 -0
- {concurrent_c_node-0.4.1 → concurrent_c_node-0.5.0}/concurrent_c_node.egg-info/top_level.txt +0 -0
- {concurrent_c_node-0.4.1 → concurrent_c_node-0.5.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: concurrent-c-node
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Summary: JavaScript and npm packages from Python over the Concurrent-C bridge: one spawned Node child per domain, host-controlled lifetime.
|
|
5
5
|
License: MIT
|
|
6
6
|
Project-URL: Repository, https://github.com/sreekotay/concurrent-c
|
|
@@ -17,6 +17,10 @@ Part of [Concurrent-C](https://github.com/sreekotay/concurrent-c) — a
|
|
|
17
17
|
strict C11-superset preprocessor: `.ccs` lowers to plain C and compiles
|
|
18
18
|
with your host C compiler. (This bridge itself is pure Python.)
|
|
19
19
|
|
|
20
|
+
Map of the three boundaries (CC hosts Python, native modules, this
|
|
21
|
+
package bridge):
|
|
22
|
+
[JS / Python interop](https://github.com/sreekotay/concurrent-c/blob/main/docs/js-py-modules.md).
|
|
23
|
+
|
|
20
24
|
```python
|
|
21
25
|
import cc_node
|
|
22
26
|
|
|
@@ -157,10 +161,12 @@ A worked tour (builtin Node modules, chains, callbacks, thenables,
|
|
|
157
161
|
buffers — no npm install needed):
|
|
158
162
|
`python -m cc_node.examples.use_node`.
|
|
159
163
|
|
|
160
|
-
Adversarial multi-child storm (fanout,
|
|
161
|
-
|
|
162
|
-
— `./stress/bridge/run.sh` (`CHAOS_SCALE=full` for bigger N
|
|
163
|
-
|
|
164
|
+
Adversarial multi-child storm (fanout, abort inject, mixed concurrent,
|
|
165
|
+
handle-leak / RSS soaks): [`stress/bridge/`](https://github.com/sreekotay/concurrent-c/tree/main/stress/bridge)
|
|
166
|
+
— `./stress/bridge/run.sh` (`CHAOS_SCALE=full` / `soak` for bigger N).
|
|
167
|
+
Mode catalog + status:
|
|
168
|
+
[`bridge_stress.md`](https://github.com/sreekotay/concurrent-c/blob/main/stress/bridge/bridge_stress.md)
|
|
169
|
+
(latency demos stay in `cc_node/examples/`).
|
|
164
170
|
|
|
165
171
|
And when the hot path is YOUR code rather than an npm package, skip the
|
|
166
172
|
wire entirely: a page of Concurrent-C (or C) exports as a native module
|
|
@@ -6,6 +6,10 @@ Part of [Concurrent-C](https://github.com/sreekotay/concurrent-c) — a
|
|
|
6
6
|
strict C11-superset preprocessor: `.ccs` lowers to plain C and compiles
|
|
7
7
|
with your host C compiler. (This bridge itself is pure Python.)
|
|
8
8
|
|
|
9
|
+
Map of the three boundaries (CC hosts Python, native modules, this
|
|
10
|
+
package bridge):
|
|
11
|
+
[JS / Python interop](https://github.com/sreekotay/concurrent-c/blob/main/docs/js-py-modules.md).
|
|
12
|
+
|
|
9
13
|
```python
|
|
10
14
|
import cc_node
|
|
11
15
|
|
|
@@ -146,10 +150,12 @@ A worked tour (builtin Node modules, chains, callbacks, thenables,
|
|
|
146
150
|
buffers — no npm install needed):
|
|
147
151
|
`python -m cc_node.examples.use_node`.
|
|
148
152
|
|
|
149
|
-
Adversarial multi-child storm (fanout,
|
|
150
|
-
|
|
151
|
-
— `./stress/bridge/run.sh` (`CHAOS_SCALE=full` for bigger N
|
|
152
|
-
|
|
153
|
+
Adversarial multi-child storm (fanout, abort inject, mixed concurrent,
|
|
154
|
+
handle-leak / RSS soaks): [`stress/bridge/`](https://github.com/sreekotay/concurrent-c/tree/main/stress/bridge)
|
|
155
|
+
— `./stress/bridge/run.sh` (`CHAOS_SCALE=full` / `soak` for bigger N).
|
|
156
|
+
Mode catalog + status:
|
|
157
|
+
[`bridge_stress.md`](https://github.com/sreekotay/concurrent-c/blob/main/stress/bridge/bridge_stress.md)
|
|
158
|
+
(latency demos stay in `cc_node/examples/`).
|
|
153
159
|
|
|
154
160
|
And when the hot path is YOUR code rather than an npm package, skip the
|
|
155
161
|
wire entirely: a page of Concurrent-C (or C) exports as a native module
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: concurrent-c-node
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Summary: JavaScript and npm packages from Python over the Concurrent-C bridge: one spawned Node child per domain, host-controlled lifetime.
|
|
5
5
|
License: MIT
|
|
6
6
|
Project-URL: Repository, https://github.com/sreekotay/concurrent-c
|
|
@@ -17,6 +17,10 @@ Part of [Concurrent-C](https://github.com/sreekotay/concurrent-c) — a
|
|
|
17
17
|
strict C11-superset preprocessor: `.ccs` lowers to plain C and compiles
|
|
18
18
|
with your host C compiler. (This bridge itself is pure Python.)
|
|
19
19
|
|
|
20
|
+
Map of the three boundaries (CC hosts Python, native modules, this
|
|
21
|
+
package bridge):
|
|
22
|
+
[JS / Python interop](https://github.com/sreekotay/concurrent-c/blob/main/docs/js-py-modules.md).
|
|
23
|
+
|
|
20
24
|
```python
|
|
21
25
|
import cc_node
|
|
22
26
|
|
|
@@ -157,10 +161,12 @@ A worked tour (builtin Node modules, chains, callbacks, thenables,
|
|
|
157
161
|
buffers — no npm install needed):
|
|
158
162
|
`python -m cc_node.examples.use_node`.
|
|
159
163
|
|
|
160
|
-
Adversarial multi-child storm (fanout,
|
|
161
|
-
|
|
162
|
-
— `./stress/bridge/run.sh` (`CHAOS_SCALE=full` for bigger N
|
|
163
|
-
|
|
164
|
+
Adversarial multi-child storm (fanout, abort inject, mixed concurrent,
|
|
165
|
+
handle-leak / RSS soaks): [`stress/bridge/`](https://github.com/sreekotay/concurrent-c/tree/main/stress/bridge)
|
|
166
|
+
— `./stress/bridge/run.sh` (`CHAOS_SCALE=full` / `soak` for bigger N).
|
|
167
|
+
Mode catalog + status:
|
|
168
|
+
[`bridge_stress.md`](https://github.com/sreekotay/concurrent-c/blob/main/stress/bridge/bridge_stress.md)
|
|
169
|
+
(latency demos stay in `cc_node/examples/`).
|
|
164
170
|
|
|
165
171
|
And when the hot path is YOUR code rather than an npm package, skip the
|
|
166
172
|
wire entirely: a page of Concurrent-C (or C) exports as a native module
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "concurrent-c-node"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.5.0"
|
|
8
8
|
description = "JavaScript and npm packages from Python over the Concurrent-C bridge: one spawned Node child per domain, host-controlled lifetime."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.8"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{concurrent_c_node-0.4.1 → concurrent_c_node-0.5.0}/concurrent_c_node.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{concurrent_c_node-0.4.1 → concurrent_c_node-0.5.0}/concurrent_c_node.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|