https://github.com/lefcha/concurrentlua
Concurrency oriented programming in Lua
https://github.com/lefcha/concurrentlua
Last synced: 11 days ago
JSON representation
Concurrency oriented programming in Lua
- Host: GitHub
- URL: https://github.com/lefcha/concurrentlua
- Owner: lefcha
- License: mit
- Created: 2011-02-27T14:08:53.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2014-11-22T19:07:56.000Z (over 11 years ago)
- Last Synced: 2025-06-05T09:42:05.158Z (9 months ago)
- Language: Lua
- Homepage:
- Size: 197 KB
- Stars: 160
- Watchers: 17
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
- awesome-lua - ConcurrentLua - Implements an Erlang-style message-passing concurrency model. (Resources / Concurrency and Multithreading)
README
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.