Giter VIP home page Giter VIP logo

Comments (6)

jxlstudio avatar jxlstudio commented on September 27, 2024

Also, I'm not using Algolia, it is not included in my config file.

from gridsome-plugin-flexsearch.

jxlstudio avatar jxlstudio commented on September 27, 2024

So I tried commenting out certain types of entries to see what works and what doesn't, and have it boiled down to only 3 entry types, still can't figure out why these types are triggering the error.

from gridsome-plugin-flexsearch.

travis-r6s avatar travis-r6s commented on September 27, 2024

@jxlstudio That's strange, but thanks for reporting - would you be able to paste your gridsome config please?

from gridsome-plugin-flexsearch.

travis-r6s avatar travis-r6s commented on September 27, 2024

@jxlstudio Do you still have this issue? I haven't seen this issue at all on any other sites.

from gridsome-plugin-flexsearch.

travis-r6s avatar travis-r6s commented on September 27, 2024

@jxlstudio Did you see the above comments?

from gridsome-plugin-flexsearch.

jxlstudio avatar jxlstudio commented on September 27, 2024

I never really fixed this, I just didn't index the problem collection.

I just upgraded this flexsearch plugin, and am now having the issue with a different collection.

It seems that when a field has multiple nested values in its array, it gives me the "RangeError: Maximum call stack size exceeded" error.

The config is below, I have inserted a comment where the problem is with additional notes. The collection is pulled from Contentful, so the Asset's file field schema file follows as such.

{
      use: 'gridsome-plugin-flexsearch',
      options: {
        chunk: true,
        // compress: true,
        autoFetch: '/search-results',
        collections: [
          {
            typeName: 'Product',
            indexName: 'Product',
            fields: ['title', 'slug', 'pageSummary', 'seoTitle']
          },
          {
            typeName: 'ParentSolution',
            indexName: 'ParentSolution',
            fields: ['title', 'slug', 'pageSummary', 'seoTitle']
          },
          {
            typeName: 'ChildSolution',
            indexName: 'ChildSolution',
            fields: ['title', 'slug', 'pageSummary', 'seoTitle']
          },
          {
            typeName: 'ProHubPage',
            indexName: 'ProHubPage',
            fields: ['title', 'slug', 'description', 'seoTitle']
          },
/// the Asset collection is the problem, when I remove the 'file' field, it doesn't give the error.
          {
            typeName: 'Asset',
            indexName: 'Asset',
            fields: ['title', 'file']
          },
          {
            typeName: 'CaseStudy',
            indexName: 'CaseStudy',
            fields: ['title', 'originalPostLink', 'featImg']
          },
          {
            typeName: 'Video',
            indexName: 'Video',
            fields: ['title', 'caption', 'link']
          },
          {
            typeName: 'BlogPost',
            indexName: 'BlogPost',
            fields: ['title', 'originalPostLink', 'featImg']
          },
          {
            typeName: 'BasicPage',
            indexName: 'BasicPage',
            fields: ['title', 'seoTitle', 'pageSummary']
          }
        ],
        searchFields: {
          title: {
            encode: "extra",
            tokenize: "full"
          },
          seoTitle: {
            encode: "extra",
            tokenize: "full"
          },
          pageSummary: {
            encode: "icase",
            tokenize: "forward"
          },
          summary: {
            encode: "icase",
            tokenize: "forward"
          },
          caption: {
            encode: "icase",
            tokenize: "forward"
          },
        }
      }
    }

from gridsome-plugin-flexsearch.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.