PHPackages                             toflar/state-set-index - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. toflar/state-set-index

ActiveLibrary

toflar/state-set-index
======================

Implementation of the State Set Index Algorithm

3.1.0(9mo ago)13196.5k↓38.9%2[1 PRs](https://github.com/Toflar/state-set-index/pulls)3MITPHPPHP ^8.1CI passing

Since Jun 23Pushed 1mo ago2 watchersCompare

[ Source](https://github.com/Toflar/state-set-index)[ Packagist](https://packagist.org/packages/toflar/state-set-index)[ RSS](/packages/toflar-state-set-index/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (2)Versions (13)Used By (3)

State Set Index Implementation for PHP
======================================

[](#state-set-index-implementation-for-php)

This implements the algorithm presented in the 2012 research paper "Efficient Similarity Search in Very Large String Sets" by Dandy Fenz, Dustin Lange, Astrid Rheinländer, Felix Naumann, and Ulf Leser from the Hasso Plattner Institute, Potsdam, Germany and Humboldt-Universität zu Berlin, Department of Computer Science, Berlin, Germany.

The algorithm allows to efficiently search through huge datasets with typos (Levenshtein distance) while keeping the index size small. [Download the paper and read all the details here](https://hpi.de/fileadmin/user_upload/fachgebiete/naumann/publications/PDFs/2012_fenz_efficient.pdf).

Installation
------------

[](#installation)

Use Composer:

```
composer require toflar/state-set-index

```

Usage
-----

[](#usage)

```
namespace App;

use Toflar\StateSetIndex\Alphabet\Utf8Alphabet;
use Toflar\StateSetIndex\DataStore\InMemoryDataStore;
use Toflar\StateSetIndex\StateSet\InMemoryStateSet;
use Toflar\StateSetIndex\StateSetIndex;

$stateSetIndex = new StateSetIndex(
    new Config(6, 4),
    new Utf8Alphabet(),
    new InMemoryStateSet(),
    new InMemoryDataStore()
);

$stateSetIndex->index(['Mueller', 'Müller', 'Muentner', 'Muster', 'Mustermann']);
$stateSetIndex->find('Mustre', 2); // Will return ['Muster'];
```

Configuration
-------------

[](#configuration)

You can configure the maximum index length and maximum alphabet size with the `Config` object. Read the paper for details on what they do. There's no such thing as a recommended size as it very much depends on what you want to index and or search.

Customization
-------------

[](#customization)

This library ships with the algorithm readily prepared for you to use. The main customization areas will be the alphabet (both the way it maps characters to labels) and the state set storage, if you want to make the index persistent. Hence, there are two interfaces that allow you to implement your own logic:

- The `AlphabetInterface` is very straight-forward. It only consists of a `map(string $char, int $alphabetSize)` method which the library needs to map characters to an internal label. Whether you load/store the alphabet in some database is up to you. The library ships with an `InMemoryAlphabet` for reference and simple use cases. You don't even need to store the alphabet as we already have one with the UTF-8 codepoints, that's what `Utf8Alphabet` is for. In case you don't want to customize the labels, use `Utf8Alphabet`.
- The `StateSetInterface` is responsible to load and store information about the state set of your index. Again, how you load/store the state set in some database is up to you. The library ships with an `InMemoryStateSet`for reference and simple use cases and tests.
- The `DataStoreInterface` is responsible for storing the string you index alongside its assigned state. Sometimes you want to completely customize storage in which case you can use the `NullDataStore` and only use the assignments you get as a return value from calling `$stateSetIndex->index()`.

You can not only ask for the final matching results using `$stateSetIndex->findMatchingStates('Mustre', 2)` which is already filtered using a multibyte implementation of the Levenshtein algorithm, but you can also access intermediary results which you can use to e.g. search your own database for states etc.:

- `$stateSetIndex->findMatchingStates('Mustre', 2)` returns the matching states only.
- `$stateSetIndex->findAcceptedStrings('Mustre', 2)` returns the matching states and the respective accepted strings (unfiltered for false-positives!).
- `$stateSetIndex->find('Mustre', 2)` returns the real matches, filtered for false-positives.

###  Health Score

52

—

FairBetter than 96% of packages

Maintenance76

Regular maintenance activity

Popularity42

Moderate usage in the ecosystem

Community18

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 78.8% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~78 days

Recently: every ~64 days

Total

11

Last Release

280d ago

Major Versions

1.0.2 → 2.0.02023-09-29

2.0.2 → 3.0.02024-11-29

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/481937?v=4)[Yanick Witschi](/maintainers/Toflar)[@Toflar](https://github.com/Toflar)

---

Top Contributors

[![Toflar](https://avatars.githubusercontent.com/u/481937?v=4)](https://github.com/Toflar "Toflar (26 commits)")[![ausi](https://avatars.githubusercontent.com/u/367169?v=4)](https://github.com/ausi "ausi (6 commits)")[![petrovich24](https://avatars.githubusercontent.com/u/20962964?v=4)](https://github.com/petrovich24 "petrovich24 (1 commits)")

###  Code Quality

TestsPHPUnit

Code StyleECS

### Embed Badge

![Health badge](/badges/toflar-state-set-index/health.svg)

```
[![Health](https://phpackages.com/badges/toflar-state-set-index/health.svg)](https://phpackages.com/packages/toflar-state-set-index)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
