kanbanbox/lexorank-php

PHP Implementation of JIRA's LexoRank algorithm.

Installs: 134

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 5

Type:project

1.0.99 2021-07-08 14:11 UTC

This package is not auto-updated.

Last update: 2024-04-27 02:19:49 UTC


README

A simple PHP implementation of xissy/lexorank

LexoRank is a ranking system introduced by Atlassian JIRA.

Background

What is the best representation of an ordered list in a database? With a dumb order number based ranking system, re-ordering a row of a list may require updating all rows of the list in a transaction, which is O(n).

LexoRank makes it O(1). All you need to do is updating the re-ordered row's order field.