Giter Club home page Giter Club logo

Comments (3)

TomLingham avatar TomLingham commented on August 11, 2024

Hmm... that is unusual. If you remove the relevance limit do you get any result? If you do, what relevance score does it return?

from laravel-searchy.

carbontwelve avatar carbontwelve commented on August 11, 2024

When the relevancy filter is removed everything being returned has a relevancy of 1 or 2. I think I need to modify the weightings of the FuzzySearchDriver matchers and see if it helps make things more relevant as I am searching within a index of sanitized body content as opposed to using this as a search for a crud interface.

from laravel-searchy.

TomLingham avatar TomLingham commented on August 11, 2024

Yes, generally if it isn't returning what you are after I would suggest rolling your own Matcher and search driver based on the type of data that you have. Searchy is targeted at shorter strings and the type of searching you are looking for is generally very slow. A matcher similar to the following should do something closer to what you are after:

<?php

class ChunksMatcher extends BaseMatcher
{
    protected $operator = 'LIKE';

    public function formatSearchString($searchString)
    {
        return implode('%', explode(' ', $searchString)).'%';
    }
}

and then juts include it in your own search driver. This is similar to the start of string matcher but excludes the space before the word to make it start on the words. On large sets of data this will be fairly slow however.

from laravel-searchy.

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.