From 516c371c0cb39b6133cff30a922706c1d67265f7 Mon Sep 17 00:00:00 2001 From: Kseniia Antonova Date: Tue, 21 Apr 2026 13:27:43 +0300 Subject: [PATCH 1/2] Added info about the `Tuples` tab - enable the `Tuples` tab - search with multiple conditions Fixes #5591 --- doc/tooling/tcm/tcm_configuration_reference.rst | 1 + doc/tooling/tcm/tcm_ui_overview.rst | 17 +++++++++++++++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/doc/tooling/tcm/tcm_configuration_reference.rst b/doc/tooling/tcm/tcm_configuration_reference.rst index 70904005b..dda010f6e 100644 --- a/doc/tooling/tcm/tcm_configuration_reference.rst +++ b/doc/tooling/tcm/tcm_configuration_reference.rst @@ -19,6 +19,7 @@ There are the following groups of |tcm| configuration parameters: - :ref:`limits ` - :ref:`security ` - :ref:`mode ` +- :ref:`feature ` - :ref:`initial-settings ` .. _tcm_configuration_reference_cluster: diff --git a/doc/tooling/tcm/tcm_ui_overview.rst b/doc/tooling/tcm/tcm_ui_overview.rst index 1fa945c09..b901be1ce 100644 --- a/doc/tooling/tcm/tcm_ui_overview.rst +++ b/doc/tooling/tcm/tcm_ui_overview.rst @@ -331,10 +331,17 @@ Learn more in :ref:`tcm_cluster_migrations`. Tuples ~~~~~~ -.. important:: +.. important:: The cluster-wide access to stored data on the **Tuples** page is supported only for sharded clusters that use the `CRUD `__ module. + Starting with TCM 1.6.0, the **Tuples** tab is disabled by default. + You can enable the tab in the TCM configuration file (``tcm.yml``) using the option below: + + .. code-block:: yaml + + feature: + tuples: True The **Tuples** page provides access to data stored in the user spaces of the selected cluster. @@ -376,7 +383,7 @@ where: .. note:: - TCM does not support plain text search. For example, to search for customers named Ivan in a + TCM does not support text search without a search condition. For example, to search for customers named Ivan in a space, use the index name and a comparison operator to specify the expression: - correct: typing ``name == "Ivan"`` in the **Search** bar @@ -403,6 +410,12 @@ In the example below, the search returns tuples with the ``name`` index equal to name == "Ivan" +The example below specifies a multiple search condition. +The search returns all people with an ID greater than 2 who were born in 1980 or earlier. + +.. code-block:: text + + id > 2; year <= 1980; .. _tcm_ui_cluster_tcf: From d55e6aab5c2d51ea3bd259d32dd1c02e30c59186 Mon Sep 17 00:00:00 2001 From: Kseniia Antonova <73473519+xuniq@users.noreply.github.com> Date: Tue, 21 Apr 2026 16:31:07 +0300 Subject: [PATCH 2/2] Update doc/tooling/tcm/tcm_ui_overview.rst Co-authored-by: marLichko <51047876+maryiaLichko@users.noreply.github.com> --- doc/tooling/tcm/tcm_ui_overview.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tooling/tcm/tcm_ui_overview.rst b/doc/tooling/tcm/tcm_ui_overview.rst index b901be1ce..f425a7c89 100644 --- a/doc/tooling/tcm/tcm_ui_overview.rst +++ b/doc/tooling/tcm/tcm_ui_overview.rst @@ -336,7 +336,7 @@ Tuples The cluster-wide access to stored data on the **Tuples** page is supported only for sharded clusters that use the `CRUD `__ module. Starting with TCM 1.6.0, the **Tuples** tab is disabled by default. - You can enable the tab in the TCM configuration file (``tcm.yml``) using the option below: + You can enable the tab in the TCM configuration file (``tcm.yaml``) using the option below: .. code-block:: yaml