1

私は奇妙なことを経験しています: 私の console.log は次のようなメッセージでいっぱいです:

DONE:0
Got Location:http://localhost:8474/db/data/index/node/<index-name>/<property-name>/<property-value>/<some int value>
DONE:1
DONE:2
DONE:0
Got Location:http://localhost:8474/db/data/index/node/<index-name>/<property-name>/<property-value>/<some int value>
DONE:1
DONE:2
Got Location:http://localhost:8474/db/data/index/node/<index-name>/<property-name>/<property-value>/<some int value>
DONE:3
Got Location:http://localhost:8474/db/data/index/node/<index-name>/<property-name>/<property-value>/<some int value>
DONE:4
Got Location:http://localhost:8474/db/data/index/node/<index-name>/<property-name>/<property-value>/<some int value>
DONE:5
Got Location:http://localhost:8474/db/data/index/node/<index-name>/<property-name>/<property-value>/<some int value>

ファイルが 2 日で 1G になったので、かなり面倒です。これらはデバッグ メッセージのように見えますが、原因がわかりません。

Neo4j 1.9、gremlin プラグイン 1.5、neography 1.0.9 を使用しています

4

1 に答える 1

1

ファイル「community/server/src/main/java/org/neo4j/server/rest/batch/BatchOperationResults.java」の 69 行目と 72 行目に 2 つの「System.out.println」が見つかりました。

public void addOperationResult( String from, Integer id, String body, String location )
{
    if(firstResult)
        firstResult = false;
    else
        results.append(',');

    results.append( OPENING_CURLY );

    if ( id != null )
    {
        results.append( "\"id\":" )
                .append( id.toString() )
                .append( COMMA );
    }

    System.out.println("DONE:" + id);
    if ( location != null )
    {
        System.out.println("Got Location:" + location);
        locations.put( id, location );
        results.append( "\"location\":" )
                .append( JsonHelper.createJsonFrom( location ) )
                .append( COMMA );
    }
于 2013-09-23T14:58:14.840 に答える