-
Notifications
You must be signed in to change notification settings - Fork 12
/
README
53 lines (28 loc) · 1.19 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
ConcurrentLua
Description
ConcurrentLua is a system that implements a concurrency model for the Lua
programming language. It is based on the share-nothing asynchronous
message-passing model that is employed in the Erlang programming language.
ConcurrentLua extends Lua's coroutines with message-passing primitives, in
order to support concurrent programming. Distributed programming is supported
transparently with the same message-passing primitives.
ConcurrentLua is implemented as a collection of Lua modules that can be
loaded by any Lua program. Most of the code is written in Lua itself, with
minor parts written in C.
Website
http://github.com/lefcha/concurrentlua
Changes
All the changes in each new release up to the latest are in the NEWS file.
Installation
Lua version 5.1 or 5.2 is compile-time requirement.
The LuaSocket, Copas and Coxpcall modules are runtime dependencies.
Compile and install the system:
make all
make install
Documentation
The detailed reference manual can be found in doc/manual.html.
License
Released under the terms and conditions of the MIT/X11 license, included in
the LICENSE file.
Authors
See AUTHORS file.