Is it possible to extend the redis-key

leon.johae
leon.johae Spryker Customer Posts: 1 🧑🏻‍🚀 - Cadet
edited March 14 in Spryker Development

I want to extend the category_node_storage by a "stock" column that should be written to the key-value of redis.

category:store:locale:stock:fk_category_node

It works as intended, but the propel:schema:validator throws this message:

Since vendor spy_category_node_storage.xml has fk_category_node as key_suffix_column.

Whats the best approach to extend the key-value

Answers

  • profuel
    profuel SSA Sprykee Posts: 63 🪐 - Explorer
    edited October 9

    Hi, @leon.johae !

    Parameter key_suffix_column is used to provide a name of the column from the DB, and the one you added might not exist in the DB table. See documentation here.

    Let's discuss why you want to change the name of the key?

    Usually it's a bad idea, since existing code is relying on the configuration provided here.