如何查看保存在 GemFire 中的数据?

How to view data saved in GemFire?

我正在尝试学习 Pivotal GemFire。 Pivotal GemFire 是内存数据网格。 您如何查看保存在 Pivotal GemFire 中的数据? 它有任何 UI 或我们为 MySQL、Oracle 等提供的任何数据库工具吗?

是的,当然,您应该阅读 Pivotal GemFire 的 Pulse tool, which is a Web application that allows you to both Monitor and Query (using OQL) data contained in Pivotal GemFire Regions

查看 Using Pulse Views,更具体地说 "Data Browser" 视图(向下滚动或在“Using Pulse Views”中搜索 "Data Browser"页)。

此外,请查看 gfsh,它在第 18 步中说:

您可以使用 locate entryqueryget 来 return 您刚刚放入该区域的数据。

gfsh>get --key=('123') --region=region1
gfsh>locate entry --key=('123abc') --region=region2
gfsh>query --query='SELECT * FROM /region2'