PHPackages                             module-toolkit/table-manager-opensearch - 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. [Database &amp; ORM](/categories/database)
4. /
5. module-toolkit/table-manager-opensearch

ActiveMagento2-module[Database &amp; ORM](/categories/database)

module-toolkit/table-manager-opensearch
=======================================

N/A

1.0.8(9mo ago)028OSL-3.0PHPPHP ~8.1.0||~8.2.0

Since Jul 31Pushed 9mo agoCompare

[ Source](https://github.com/Vladwww2015/module-toolkit-table-manager-opensearch)[ Packagist](https://packagist.org/packages/module-toolkit/table-manager-opensearch)[ RSS](/packages/module-toolkit-table-manager-opensearch/feed)WikiDiscussions main Synced today

READMEChangelog (9)Dependencies (6)Versions (10)Used By (0)

### How to use.

[](#how-to-use)

\--- di.xml

```

        default

        Custom\Module\Model\GetConnectionName
        custom_index_name
        custom_index_table
        entity_id

            entity_id
            name
            total

        Custom\Module\Model\CustomIndexBuilderSearch

```

- create indexer.xml

```

        Custom Name-Title
        Custom Name-Description

```

- create mview.xml

```

```

- Index process

```
namespace Custom\Module\Model\Indexer;

use ModuleToolkit\TableManager\TableManager\IndexBuilderSearchInterface;
use Magento\Framework\Indexer\ActionInterface;

class CustomIndexer implements ActionInterface
{
    public function __construct(protected IndexBuilderSearchInterface $indexBuilder)
    {}

    public function execute($ids = null)
    {
        $this->indexBuilder->rebuild($ids);
    }

    public function executeFull()
    {
        $this->indexBuilder->rebuild();
    }

    public function executeList(array $ids)
    {
        $this->indexBuilder->rebuild($ids);
    }

    public function executeRow($id)
    {
        $this->indexBuilder->rebuild([$id]);
    }
}
```

- 1. Search and get OpenSearch Results Format

```
use ModuleToolkit\TableManager\TableManager\IndexBuilderSearchInterface;

class CustomSearch
{
    public function __construct(
        protected IndexBuilderSearchInterface $indexBuilderSearch
    )
    {
    }

    public function search()
    {
        $searchCriteria = ['sku' => 'test'];

        $page = 1;
        $size = 300;
        $sort = ['sku' => 'DESC']

        $this->indexBuilderSearch->searchWithPagination($searchCriteria, $page, $size, $sort)//array;
        $this->indexBuilderSearch->search($searchCriteria);// array
        $this->indexBuilderSearch->getById(1); //array
    }
}
```

- 2. Search and get magento array Format

```
use ModuleToolkit\TableManager\TableManager\IndexBuilderSearchInterface;
use ModuleToolkit\TableManager\TableManager\TableManagerInterface;

class CustomSearch
{
    public function __construct(
        protected IndexBuilderSearchInterface $indexBuilderSearch,
        protected TableManagerInterface $tableManager
    ){}

    public function search()
    {
        $searchCriteria = ['sku' => 'test'];

        $page = 1;
        $size = 300;
        $sort = ['sku' => 'DESC']

        $tableRequest = $this->tableManager->getTableRequest();
        $tableRequest
            ->setCurPage($page)
            ->setLimit($size)
            ->setSortOrder($sort)
            ->setValues($searchCriteria);

        $this->tableManager->indexFastSearch($tableRequest, $this->indexBuilderSearch); //array magento array format
    }
}
```

###  Health Score

34

—

LowBetter than 75% of packages

Maintenance57

Moderate activity, may be stable

Popularity7

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~6 days

Recently: every ~1 days

Total

9

Last Release

286d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/827376d44a1aa3c92c966ae0907687568a3a67ac0511d6705b9f9cb27dba39dd?d=identicon)[spacecode](/maintainers/spacecode)

---

Top Contributors

[![Vladwww2015](https://avatars.githubusercontent.com/u/20088319?v=4)](https://github.com/Vladwww2015 "Vladwww2015 (9 commits)")

### Embed Badge

![Health badge](/badges/module-toolkit-table-manager-opensearch/health.svg)

```
[![Health](https://phpackages.com/badges/module-toolkit-table-manager-opensearch/health.svg)](https://phpackages.com/packages/module-toolkit-table-manager-opensearch)
```

###  Alternatives

[mollie/magento2

Mollie Payment Module for Magento 2

1131.9M16](/packages/mollie-magento2)[loki/magento2-components

Core module for defining Alpine.js components with advanced AJAX features

1011.8k26](/packages/loki-magento2-components)[fastly/magento2

Fastly CDN Module for Magento 2.4.x

1564.4M1](/packages/fastly-magento2)[run-as-root/magento2-prometheus-exporter

Magento2 Prometheus Exporter

68357.9k](/packages/run-as-root-magento2-prometheus-exporter)[buckaroo/magento2

Buckaroo Magento 2 extension

32420.3k8](/packages/buckaroo-magento2)[mage-os/module-inventory-reservations-grid

Add a grid with the list of inventory reservations.

1615.9k](/packages/mage-os-module-inventory-reservations-grid)

PHPackages © 2026

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