使用独立节点点燃 Web 会话集群
Ignite Web Session Clustering with standalone nodes
我想在我的应用程序中使用网络会话集群。
我查看了一个页面https://apacheignite-mix.readme.io/docs/web-session-clustering
并且无法设置独立的点燃节点..
只这样
...
<!-- Specify Ignite configuration (relative to META-INF folder or Ignite_HOME). -->
<context-param>
<param-name>IgniteConfigurationFilePath</param-name>
<param-value>config/default-config.xml </param-value>
</context-param>
如何在 web.xml 文件中设置服务器 ip:port?还是有其他设置方式??
谢谢
config/default-config.xml
是一个完整 Ignite XML configuration file 的路径,它允许您指定节点地址和您喜欢的任何其他内容。
您可以将其配置为客户端模式,并使其加入独立服务器节点的集群。
我想在我的应用程序中使用网络会话集群。
我查看了一个页面https://apacheignite-mix.readme.io/docs/web-session-clustering 并且无法设置独立的点燃节点.. 只这样 ...
<!-- Specify Ignite configuration (relative to META-INF folder or Ignite_HOME). -->
<context-param>
<param-name>IgniteConfigurationFilePath</param-name>
<param-value>config/default-config.xml </param-value>
</context-param>
如何在 web.xml 文件中设置服务器 ip:port?还是有其他设置方式??
谢谢
config/default-config.xml
是一个完整 Ignite XML configuration file 的路径,它允许您指定节点地址和您喜欢的任何其他内容。
您可以将其配置为客户端模式,并使其加入独立服务器节点的集群。