1

我想实现 Web-socket 支持Oracle Java Embedded Suite

当前的 Glasfish 企业服务器已经支持 Web 套接字。但我认为包含 Web 套接字的所有功能会增加内存需求。

目前我真的很困惑我应该如何实现它?我正在考虑仅添加对 JSON 的支持以保持低内存占用。

你能指导我跟随吗?

  1. 是否有用于 Java 嵌入式套件的 Web 套接字的自定义、更快、低内存占用的实现。
  2. 仅 JSON 实现就足够了。
4

1 回答 1

1

What do you mean by JSON only implementation suffice? That depends on the application. I don't think JSON is a low memory footprint compared to a binary protocol, nor it will be less processor intensive, as like an int, you need to do the parsing from text to binary. With a binary protocol you just get the data.

于 2013-09-03T14:22:12.663 回答