*

ahmose

  • **
  • 13 posts
oc_t_item_description table
« on: November 06, 2023, 05:03:20 AM »
when installing a new osclass the oc_t_item_description table type is MyISAM not InnoDB like other tables..
is there a reason for that ?

*

MB Themes

Re: oc_t_item_description table
« Reply #1 on: November 06, 2023, 08:19:39 PM »
yes, indexes.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

Marked as best answer by frosticek on November 07, 2023, 05:41:24 PM
*

ahmose

  • **
  • 13 posts
Re: oc_t_item_description table
« Reply #2 on: November 06, 2023, 10:59:43 PM »
for future searches

InnoDB supports a large pool of buffers that caches both data and indexes. However, there is no support for a Full-text search.

The MyISAM key buffer is only meant for indexes, and a full-text search is supported in MyISAM.