Coder Social home page Coder Social logo

Comments (4)

Melcus avatar Melcus commented on May 9, 2024

I'm interested in this as well.

from scout.

toby1991 avatar toby1991 commented on May 9, 2024

as well too

from scout.

brino avatar brino commented on May 9, 2024

There is no reason you couldn't overwrite the mapping with a custom one, or index settings for that matter. You just post them with a REST client to the elastic cluster directly. Then, index your data. Granted you're still somewhat limited, but the point is you can quickly accomplish this outside of scout without too much trouble. You could also make a console command to do this.

from scout.

mehrdad-shokri avatar mehrdad-shokri commented on May 9, 2024

Actually, you can create you custom mapping with a curl command in your cluster, the import your data from scout via scout:import laravel scout will respect your mapping, but you need to override toSearchableArray to match with your custom mapping.
An example would be:

curl -XPUT 'localhost:9200/yourApp' -d '
{
  "settings":{
    "analysis":{
      "char_filter":{
        "zero_width_spaces":{
          "type":"mapping",
          "mappings":[
            "\\u200C=> "
          ]
        }
      },
      "filter":{
        "persian_stop":{
          "type":"stop",
          "stopwords":"_persian_"
        },
        "autocomplete_filter":{
          "type":"edge_ngram",
          "min_gram":1,
          "max_gram":20
        }
      },
      "analyzer":{
        "autocomple":{
          "type":"custom",
          "tokenizer":"standard",
          "char_filter":[
            "zero_width_spaces"
          ],
          "filter":[
            "autocomplete_filter",
            "lowercase",
            "arabic_normalization",
            "persian_normalization",
            "persian_stop"
          ]
        },
        "persian":{
          "type":"custom",
          "tokenizer":"standard",
          "char_filter":[
            "zero_width_spaces"
          ],
          "filter":[
            "lowercase",
            "arabic_normalization",
            "persian_normalization",
            "persian_stop"
          ]
        }
      }
    }
  },
  "mappings":{
    "places":{
      "properties":{
        "name":{
          "type":"string",
          "analyzer":"persian"
        },
        "name_suggest":{
          "type":"string",
          "analyzer":"autocomple"
        }
      }
    }
  }
}'

And your toSearchableArray would be like:

public function toSearchableArray()
    {
        $array = array("name" => $this->name, "name_suggest" => $this->name, $this->getKeyName() => $this->getKey());
        return $array;
    }

If you get any more problems, just mention me.

from scout.

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.