Sha256: ff7d55a06edf7a871135b20c370a19bb771ce444dec6c4d1e97e9a3e099e6fd4

Contents?: true

Size: 883 Bytes

Versions: 10

Compression:

Stored size: 883 Bytes

Contents

Feature: Cached parsind of Scientific Names
  In order to be able to parse scientific names super fast
  A user should be able to parse and cache and retrieve results
  So I want to implement Redis backend to a parser

  Scenario: Connecting to local redis database
    Given Redis server is running locally
    Then I get "LOCAL" and "SLAVE" databases connection

  Scenario: "Parsing a name by parser and from database"
    Given a clean local database
    When I parse a name "Homo sapiens sapiens (Linn.) 1758" two times
    Then second parse should be much faster

  Scenario: "Parsing only canonical names"
    And a clean local database
    Given configuration setting "canonical_only", "true"
    When I parse a name "Homo sapiens sapiens (Linn) 1758" two times
    Then I get only "canonical, parser_version, parsed" as value keys
    And second parse should be much faster

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
parsley-store-0.3.6 features/parsley-store.feature
parsley-store-0.3.5 features/parsley-store.feature
parsley-store-0.3.4 features/parsley-store.feature
parsley-store-0.3.3 features/parsley-store.feature
parsley-store-0.3.2 features/parsley-store.feature
parsley-store-0.3.1 features/parsley-store.feature
parsley-store-0.3.0 features/parsley-store.feature
parsley-store-0.2.2 features/parsley-store.feature
parsley-store-0.2.1 features/parsley-store.feature
parsley-store-0.2.0 features/parsley-store.feature