malkusch/php-index

This package is abandoned and no longer maintained. No replacement package was suggested.

This library provides an API to perform binary search operations on a sorted index. The index can be a XML document, a CSV document, or an arbitrary text file where the key has a fixed position. You can easily implement your own index. This API comes handy on any sorted data structure where realtime

Maintainers

👁 malkusch

Package info

github.com/malkusch/php-index

pkg:composer/malkusch/php-index

Statistics

Installs: 19 815

Dependents: 1

Suggesters: 0

Stars: 6

Open Issues: 0

0.1.1 2014-10-26 21:24 UTC

Requires

  • php: >=5.3.0

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

WTFPL-2.0 a10836e295aa45694c2acf7ac9f10c61f06fd4db

indexbinary search

This package is not auto-updated.

Last update: 2017-11-17 20:18:46 UTC


README

This library provides an API to perform binary search operations on a sorted index. The index can be a XML document, an CSV document, or an arbitrary text file where the key has a fixed position. You can easily implement your own index. This API comes handy on any sorted data structure where realtime search operations are necessary without the detour of a DBS import.

Installation

Use Composer:

{
 "require": {
 "malkusch/php-index": "~0.1"
 }
}

Usage

Have a look at the docs/examples/ folder. You can find there examples for each implemented index structure.

License and author

This project is free and under WTFPL. Responsable for this project is Markus Malkusch markus@malkusch.de.

Donations

If you like BAV and feel generous donate a few Bitcoins here: 1335STSwu9hST4vcMRppEPgENMHD2r1REK

👁 Build Status