gpt4 book ai didi

Neo4J、SDN 和运行 Cypher 空间查询

转载 作者:行者123 更新时间:2023-12-03 07:29:45 25 4
gpt4 key购买 nike

我是 Neo4J 的新手,我正在尝试为基于时空的高可用性查询构建概念证明。

我有一个设置,其中包含 2 个独立的 Neo4J Enterprise 服务器和一个使用嵌入式 HA Neo4J 服务器运行的 Java 应用程序。

一切都易于设置,基本查询也易于设置且高效。另外执行从 Neo4J 派生的查询 SpatialRepository按预期工作。

我很难理解的是如何使用 SDN 结合任何其他 where 子句进行空间查询。作为一个简单的例子,我如何编写查找名为 X 的用户在纬度/经度 Y 英里范围内的所有位置。因为 SpatialRepository 不是常规 Spring Repository 类树的一部分,所以我不相信我可以使用任何命名约定,我的意图是执行空间查询然后过滤结果吗?

我已经追踪到 LegacyIndexSearcher(它的名字让我感到害怕!)的代码,但看不到任何扩展搜索的机制。我也看过 IndexProviderTest在 GitHub 上,它可以提供一种手动机制来对索引执行查询,但我认为可能有两个索引在起作用。

如果我了解如何构建可以在 @Query 注释中使用的 Cypher 查询,这可能会有所帮助。虽然我已经能够使用控制台执行简单的 REST 查询:

  :POST /db/data/ext/SpatialPlugin/graphdb/findGeometriesWithinDistance  {    "layer":"location",     "pointX":0.0,     "pointY":51.526256,     "distanceInKm":100   }

这不起作用:

  start n=node:location('withinDistance:[51.526256,0.0,100.0]') return n;

错误是:

  Index `location` does not exist  Neo.ClientError.Schema.NoSuchIndex

索引是(可能天真地)使用 Spring 创建的:

  @Indexed(indexType = IndexType.POINT, indexName = "location")  String wkt;

如果我运行 index --indexes在控制台中,我可以看到没有名为 location 的索引,但是有一个名为 location__neo4j-spatial__LayerNodeIndex__internal__spatialNodeLookup__ 的索引。 .

我需要手动创建索引吗?如果是这样,有人可以指出文档的方向,我会继续进行。

假设只是无知让我无法运行简单的 Cypher 查询,那么它是否就像向查询添加常规 Cypher WHERE 子句以执行基于空间和属性的查询的组合一样简单?

添加了更多索引详细信息
运行了:GET /db/data/index/node/从控制台我可以看到两个可能有用的索引(其他索引已删除):

{  "location__neo4j-spatial__LayerNodeIndex__internal__spatialNodeLookup__": {    "template": "/db/data/index/node/location__neo4j-spatial__LayerNodeIndex__internal__spatialNodeLookup__/{key}/{value}",    "provider": "lucene",    "type": "exact"  },  "GeoTemporalThing": {    "template": "/db/data/index/node/GeoTemporalThing/{key}/{value}",    "provider": "lucene",    "type": "exact"  }}

所以也许这应该是我正在尝试的查询的正确格式:

start n=node:GeoTemporalThing('withinDistance:[51.526256,0.0,100.0]') return n;

但这给了我这个错误(我现在正在谷歌搜索)

org.apache.lucene.queryParser.ParseException: Cannot parse 'withinDistance:[51.526256,0.0,100.0]': Encountered " "]" "] "" at line 1, column 35.Was expecting one of:    "TO" ...     ...     ...

更新
确定我的索引不存在并且我应该使用 REST 接口(interface)创建一个索引,该索引的名称是我希望 SDN 创建的,如下所示:

:POST /db/data/index/node{  "name" : "location",  "config" : {    "provider" : "spatial",    "geometry_type" : "point",    "wkt" : "wkt"  }}

而且,现在一切似乎都运行良好。所以,我的问题是,我是否必须手动创建该索引?如果我查看 org.springframework.data.neo4j.support.index.IndexType 中的代码,它看起来好像应该使用我上面使用的设置,但它只创建了长命名的 Lucene 索引:

public enum IndexType{       @Deprecated    SIMPLE   { public Map getConfig() { return LuceneIndexImplementation.EXACT_CONFIG; } },    LABEL    { public Map getConfig() { return null; }  public boolean isLabelBased() { return true; }},    FULLTEXT { public Map getConfig() { return LuceneIndexImplementation.FULLTEXT_CONFIG; } },    POINT    { public Map getConfig() { return MapUtil.stringMap(                      IndexManager.PROVIDER, "spatial", "geometry_type" , "point","wkt","wkt") ; } }    ;    public abstract MapgetConfig();    public boolean isLabelBased() { return false; }}

我确实清理了系统并且行为是一样的,我是否遗漏了一个步骤?

软件详情:

java :
neo4j 2.0.1
neo4j-ha 2.0.1
neo4j-空间 0.12-neo4j-2.0.1
spring-data-neo4j 3.0.0.RELEASE

独立服务器:
neo4j-enterprise-2.0.1
neo4j-spatial-0.12-neo4j-2.0.1-server-plugin

最佳答案

我不确定这是否是 Spring Data 在设置索引时的错误,但使用 REST 索引手动创建索引是可行的:

:POST /db/data/index/node{  "name" : "location",  "config" : {    "provider" : "spatial",    "geometry_type" : "point",    "wkt" : "wkt"  }}

我现在可以在 @Query 注释中使用 cypher 以最小的努力执行查询(显然会有更多参数):

@Query(value = "start n=node:location('withinDistance:[51.526256,0.0,100.0]') MATCH user-[wa:WAS_HERE]-n WHERE wa.ts > {ts} return user"Page findByTimeAtLocation(@Param("ts") long ts);

关于Neo4J、SDN 和运行 Cypher 空间查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22200571/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com