Skip to content

Commit

Permalink
forgot to add max_threads parameter to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
maxdemarzi committed Dec 8, 2010
1 parent 74204e8 commit dbaa2ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ Just add gem 'neography' to your Gemfile and run bundle install

A thin ruby wrapper Neography::Rest which tries to mirror the Neo4j Rest API and returns JSON or Nil:

# protocol, server, port, log_file, log_enabled
@neo = Neography::Rest.new ('http://', '192.168.10.1', 7479, 'log/neography.log', true)
# protocol, server, port, log_file, log_enabled, max_threads
@neo = Neography::Rest.new ('http://', '192.168.10.1', 7479, 'log/neography.log', true, 50)

Default Parameters are:

@neo = Neography::Rest.new ('http://', 'localhost', 7474, '/neography.log', false)
@neo = Neography::Rest.new ('http://', 'localhost', 7474, '/neography.log', false, 20)

To Use:

Expand Down

0 comments on commit dbaa2ee

Please sign in to comment.