net-spider-0.4.0.0: A graph database middleware to maintain a time-varying graph.

MaintainerToshio Ito <debug.ito@gmail.com>
Safe HaskellNone
LanguageHaskell2010

NetSpider.Spider.Config

Description

 
Synopsis

Documentation

data Config n na fla Source #

Configuration to create a Spider object.

Constructors

Config 

Fields

  • wsHost :: Host

    Host of WebSocket endpoint of Tinkerpop Gremlin Server. Default: "localhost".

  • wsPort :: Port

    Port of WebSocket endpoint of Tinkerpop Gremlin Server. Default: 8182

  • nodeIdKey :: Key VNode n

    Name of vertex property that stores the node ID. Default: "@node_id".

  • logThreshold :: LogLevel

    Logs with the level higher than or equal to this threshold are printed. Default: LevelWarn.

    Since: 0.2.0.0

defConfig :: Config n na fla Source #

type Host = String #

Host name or an IP address.

type Port = Int #

TCP port number.