在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):kingluo/luajit.io开源软件地址(OpenSource Url):https://github.com/kingluo/luajit.io开源编程语言(OpenSource Language):Lua 100.0%开源软件介绍(OpenSource Introduction):luajit.ioIntroductionPure Lua IO framework, with C efficiency due to its simple but powerful design, and, of course, thanks to luajit, the perfect JIT engine. The HTTP Server is out-of-the-box, which simulates the functionalities and performance of nginx and ngx_lua. Moreover, it could be used to develop generic TCP/UDP server. Why reinvent the wheel? Well, the nginx and ngx_lua is renowned at efficiency and extensible, but they are written in C language, so you need to be as smart as the authors to contribute codes. What if the core is written in pure lua language, but without any efficiency tradeoff? Then not only the web apps are extensible, but also the server core is extensible at ease by any levels of developers! The Luajit is a perfect JIT engine to improve lua performance, so with dedicated and luajit-oriented design, the luajit.io would reassemble the advantages of nginx and ngx_lua, but provides extra benefit: simple and extensible at the core. See the http://luajit.io for demo. API compatible with ngx_lua (Work In Progress)It provides seamless ngx_lua API, so third-party openresty libraries could be used in luajit.io without porting. Tested libraries:
Supported PlatformsOnly supports Linux on x86 or x64. The luajit.io uses linux-specific features, e.g. epoll, signalfd, timerfd, inotify, etc. Dependencies
On Debian Linux, you should install the dev packages of them, which contains the required *.so links: apt-get install zlib1g-dev libssl-dev libpcre3-dev On Centos Linux: yum install zlib-devel pcre-devel openssl-devel StatusThis library is considered experimental and still under active development. And there is still big room to improve the performance, by increasing the jit compiled ratio, which is really a tough job. Welcome to join and help! QuickStartinstall luajit
http serverJust like the API compatibility, the luajit.io configuration simulates the nginx.conf, so most directives are copied from there. See conf/httpd.lua for example. Copy the example into new file, e.g. conf/myhttpd.lua, and adjust the content according to your need. Then just run it: luajit conf/myhttpd.lua generic tcp serverIt contains a simple socks5 server, as the generic tcp server demo. LD_PRELOAD=/lib/x86_64-linux-gnu/libpthread.so.0 luajit conf/socks5.lua Note that by default, the luajit is not compiled with See https://sourceware.org/bugzilla/show_bug.cgi?id=10652 for detail. The async DNS resolving uses multi-threading, so either re-compile the luajit or use LD_PRELOAD before running it. You should locate the correct version of libpthread.so on your box. locate libpthread.so |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论