- Features
- Benchmark
- Introduction
- Get started
- Documentation
- Code Example
- Client SDKs
- Demos
- Tutorials
- Tests
- Contact us
- Core container & dependency injection: bean manipulation, auto binding, auto implementation, etc.
- Multiple Communication Protocols: supports TCP, UDP, WebSocket, HTTP.
- Traffic Encryption: traffic between clients and servers can be encrypted using SSL.
- Multiple Client SDKs: Android, IOS, Unity, React, C++, Flutter, ...
Ezyfox Server's benchmark with 1000 CCU broadcast messages in 1 hour on one VPS ram 512MB, CPU 1 core. You can watch this video to see how did we test.
To rapidly develop online games, developers often have to use a game server engine like SmartFoxServer or Photon, but unfortunately, they come with really high price, especially when more and more users are engaging in our products. Therefore, we develop EzyFox ecosystem aiming to make everything free and open for everyone who are keen on building multi-players games and applications.
EzyFox ecosystem supports a wide range of most important components to develop an enterprise product including TCP, UDP, WebSocket protocols with SSL encryption, HTTP RESTful API, Remote procedure call RPC protocol, Database interaction, Memory caching, Message Queue.
With EzyFox ecosystem, we can stay away from the headache of choosing which technologies to use to manage and scale up an application, so we can just focus on implementing business logics.
https://youngmonkeys.org/get-started/
https://youngmonkeys.org/ezyfox-sever/
1. Create an app entry
public static class HelloAppEntry extends EzySimpleAppEntry {
@Override
protected String[] getScanableBeanPackages() {
return new String[] {
"com.tvd12.ezyfoxserver.embedded.test" // replace by your package
};
}
@Override
protected String[] getScanableBindingPackages() {
return new String[] {
"com.tvd12.ezyfoxserver.embedded.test" // replace by your package
};
}
@Override
protected EzyAppRequestController newUserRequestController(EzyBeanContext beanContext) {
return EzyUserRequestAppSingletonController.builder()
.beanContext(beanContext)
.build();
}
}
2. Create a plugin entry
public static class HelloPluginEntry extends EzySimplePluginEntry {
@Override
protected String[] getScanableBeanPackages() {
return new String[] {
"com.tvd12.ezyfoxserver.embedded.test" // replace by your package
};
}
}
3. Setup
EzyPluginSettingBuilder pluginSettingBuilder = new EzyPluginSettingBuilder()
.name("hello")
.addListenEvent(EzyEventType.USER_LOGIN)
.entryLoader(HelloPluginEntryLoader.class);
EzyAppSettingBuilder appSettingBuilder = new EzyAppSettingBuilder()
.name("hello")
.entryLoader(HelloAppEntryLoader.class);
EzyZoneSettingBuilder zoneSettingBuilder = new EzyZoneSettingBuilder()
.name("hello")
.application(appSettingBuilder.build())
.plugin(pluginSettingBuilder.build());
EzySimpleSettings settings = new EzySettingsBuilder()
.zone(zoneSettingBuilder.build())
.build();
4. Create and start a server
EzyEmbeddedServer server = EzyEmbeddedServer.builder()
.settings(settings)
.build();
server.start();
You can find full example here
Navigate to the source folder and run:
mvn test
- Touch us on Facebook
- Ask us on stackask.com
- Email to me Dzung
Currently, our operating budget is depending on our salary, every effort still based on voluntary contributions from a few members of the organization. But with a low budget like that, it causes many difficulties for us. With big plans and results being intellectual products for the community, we hope to receive your support to take further steps. Thank you very much.
https://youngmonkeys.org/donate/
- Apache License, Version 2.0