Photon——Feature Overview 功能概述
Photon——Feature Overview 功能概述
Feature Overview 功能概述
Basic Architecture 基本架构
- The Photon Core is written in native C++ for performance reasons
- It uses IO Completions Ports (IOCP) for high performance socket handling
- Implements the heavy “lifting” of the protocols (e.g. reliable UDP)
- Support relaible UDP, TCP and Web Sockets
- The Core hosts a .NET CLR which runs the business logic in C#
- Contains the applications running on Photon
- Written in C# (or any other .NET language)
Server Applications (C#) 服务器应用程序
- We provide several applications as starting point provided in source C# code
- Lite: Simple and powerful room based game logic
- LiteLobby: Lobby functionality and room logic
- Policy: Policy server for Unity3d, Flash and Silverlight
- LoadBalancing: Load balanced lite scaling across servers (this is powering our Photon Cloud)
- The apps are tuned for performance and can be used out of the box or extended
- Convenient xcopy deploy (automatic or manual restart)
Protocols 协议层
- Photon Core supports the follwoing protocols
- reliable UDP (based on eNET) and specially tuned for Client-2-Server architectures
- Binary TCP
- Web Sockets
- Transfer protocol is very lean and slim
- Photon wraps up the networking layer of each client platform
- Communicate cross-platform and cross-protocol
- Put your data in hashtables and send it: forget about de-/serialization
Server Dev Framework (C#) 服务器Dev框架
- All apps sit on top of a development framework that solves common tasks for you
- Simple and flexible mapping of RPC calls to operation instances
- Messages passing through fibers solve many threading problems
- Designed to saturate bandwidth before the CPU becomes the bottleneck
Server Development Tools 服务器开发工具
- Fully running in Visual Studio » F5 » Debug right from your code!
- Use all the first class tools from .NET Development
Data Persistence (DBs) 数据持久层
- Photon does not provide an persistence layer
- .NET/Windows supports all major products
- Usage of ORM (mapping) layers optional
Vast Support of Client Platforms 支持的客户端平台
- All client platforms interoprate (iOS vs Android vs PC)
- Major client platforms supported 主要的客户端平台
- Unity3d: Inlcuding Web/Standalone (Win, MAC, Linux), iOS, Android (see here )
- MAC: iOS (iPad, iPhone), Mac OSX
- Marmalade: iOS, Android, Bada, LG, BlackBerry (see here )
- Flash & Air: Browser, Standalone, iOS, Android
- Windows 8, Windows 7, Vista, XP, Windows Server: Native & .NET
- Windows Phone 7+
- HTML5: Javascript
- Android: Java and native (NDK)
- .NET
- Mono(跨平台的.Net运行环境)
Hosting 托管
- Host Photon with any major provider
- PaaS: Platform as a Service
- IaaS: Infrastructure as a Service
- Selected providers 可选供应商
Support 支持
- Responsive support by Exit Games staff
- Customers get email support
- Forum support: http://forum.exitgames.com/
Photon——Feature Overview 功能概述的更多相关文章
- MicroRNA in Control of Gene Expression: An Overview of Nuclear Functions 微RNA控制基因表达:核功能概述
MicroRNA in Control of Gene Expression:An Overview of Nuclear Functions微RNA控制基因表达:核功能概述 抽象:小的非编码RNA( ...
- Unity Lighting - Lighting overview 照明概述
Lighting overview 照明概述 In order to calculate the shading of a 3D object, Unity needs to know the ...
- Power BI官方视频(1) Power BI Desktop 7月份更新功能概述
2016年7月,Power BI Desktop进行了一些功能更新,提高整体的用户体验.同时也有一些新的和令人兴奋的功能.看看大概介绍,更新功能要点: 本文原文地址:Power BI官方视频(1) P ...
- osgearth各个例子功能概述
osgearth各个例子功能概述 转自:http://blog.csdn.net/wl198302/article/details/21177309 最近在学习osgearth,对其还不是很理解,有些 ...
- SAP Business One SAP B1功能概述
SAP Business One SAP B1功能概述 SAP B One配有易于使用的软件界面,是一款全面的,多功能的业务管理解决方案,贵企业可以将其用作主要的企业资源(ERP)应用程序. 该解决方 ...
- Android(java)学习笔记102:Map集合功能概述
下面通过代码引入Map集合:如下 package cn.itcast_01; import java.util.HashMap; import java.util.Map; /* * 作为学生来说,是 ...
- Java基础知识强化之集合框架笔记51:Map集合之Map集合的功能概述与测试
1. Map集合的功能概述 (1)添加功能 V put(K key,V value):添加元素.这个其实还有另一个功能?先不告诉你,等会讲 如果键是第一次存储,就直接存储元素,返回null 如果键不是 ...
- Java基础知识强化之集合框架笔记16:List集合的特有功能概述和测试
1. List集合的特有功能概述: (1)添加功能: void add(int index, Object element):在指定位置添加元素 (2)获取功能: Object get(int ind ...
- Java基础知识强化之集合框架笔记03:Collection集合的功能概述
1. Collection功能概述:Collection是集合的顶层接口,它子体系有重复的,有唯一性,有有序的,无序的. (1)添加功能 boolean add(Object obj):添加一个元素 ...
随机推荐
- 2705: [SDOI2012]Longge的问题
Time Limit: 3 Sec Memory Limit: 128 MBSubmit: 1898 Solved: 1191[Submit][Status][Discuss] Descripti ...
- Juniper SRX 简单命令一
Juniper为人所熟悉的一定是从netscreen开始的,作为一线防火墙品牌,还是有很高的地位.但是以前玩netscreen,都是用的网页版去配置,而且网页版做得很不错.但是现在netscreen要 ...
- mybatis动态sql中的bind绑定
知识点:bind在模糊查询中的用法 在我的博客 mybatis中使用mysql的模糊查询字符串拼接(like) 中也涉及到bind的使用 <!-- List<Employee> ...
- spring junit4 测试
@Service @ContextConfiguration(locations = { "classpath:config/applicationContext.xml" }) ...
- apache——(OS 10048)通常每个套接字地址(协议/网络地址/端口)只允许使用一次。 : AH00072: make_sock: could not bind to address [::]:443
问题:命令行运行httpd.exe时报错 (OS 10048)通常每个套接字地址(协议/网络地址/端口)只允许使用一次. : AH00072: make_sock: could not bind t ...
- 回文树 Palindromic Tree
回文树 Palindromic Tree 嗯..回文树是个什么东西呢. 回文树(或者说是回文自动机)每个节点代表一个本质不同的回文串. 首先它类似字典树,每个节点有SIGMA个儿子,表示对应的字母. ...
- git开发错分支
1,代码未提交时: 使用以下命令即可解决. git add . (把所有改动暂存) git stash (把暂存的文件提交到git的暂存栈) git checkout 本该提交代码的 ...
- Linux安装ipvsadm
一.介绍 ipvs称之为IP虚拟服务器(IP Virtual Server,简写为IPVS).是运行在LVS下的提供负载平衡功能的一种技术 二.安装 1.下载 http://www.linuxvirt ...
- FlatBuffer入门笔记
FlatBuffer入门笔记 1 flatbuffer资料 flatbuffer下载地址:https://github.com/google/flatbuffers flatbuffer官方使用文档: ...
- 【nginx】一台nginx服务器多域名配置
Nginx 多域名配置 nginx绑定多个域名可又把多个域名规则写一个配置文件里,也可又分别建立多个域名配置文件,我一般为了管理方便,每个域名建一个文件,有些同类域名也可又写在一个总的配置文件里.一. ...