티스토리 뷰

시퀄라이즈에서는 fulltext search 를 공식 지원하지는 않으므로 아래와 같이 처리함. (물론 사전에 DB에 fulltext index 생성 필요함)


Payments.findAll({
  where: Sequelize.literal('MATCH (SomeField) AGAINST (:name)'),
  replacements: {
    name: 'Alex'
  }
});


https://stackoverflow.com/questions/32200436/innodb-cant-find-fulltext-index-matching-the-column-list-when-queried-more-tha

댓글