Index textuel des citations en mémoire dans Go

Récemment, j'ai eu besoin de mettre en œuvre une recherche au début d'une chaîne, en fait WHERE name LIKE '%'. Il s'agissait d'une recherche par nom de symboles d'échange (AAPL, AMZN, EUR / USD, etc.). Je voulais que la recherche fonctionne rapidement et ne charge plus la base de données. En conséquence, je suis arrivé à l'implémentation de la recherche arborescente en mémoire, et je vais vous en parler.

55000 ( ). . , .

. , BTree, ( , ,  , trie), — . , .

. , .

.

, , . , , : 

  • AAA (BetaShares Australian High Interest Cash ETF, ASX), 

  • AAA (All Active Asset Capital LTD, LSE).

Index.Data , Index.Data AAA.

SearchIndex.Data . , .

, .

.

  1. .

  2. .

  3. .

  4. .

  5. , , ã → a.

  6. - ().

, — , .

, Index.Data .

. — Index.Children , ( — ). , AAPL, ( ):

[A], [A], [P], [L]. , . , .

, . , . , .

.

, — . .

  1. (. ).

  2. , . 

  3. .

, AA, :

  • AAL

  • AAALF

  • AAAP

  • AAB

  • AAP

  • AAPJ

  • AAPL

  • AAPT

, AA. .

WHERE name LIKE '%'. , , .

  • “EUR”, “EUR”, “EUR/USD”, “USD/EUR”. , .

  • , . , “APL”, “APL”, “AAPL” (Apple).

  • .

“EUR”, “EUR”, “EUR/USD”, “USD/EUR”, : . , “USD/EUR”, : “usd eur”, “eur”. “Grupo Financiero Galicia SA” “Grupo Financiero Galicia SA”, “Financiero Galicia SA”, “Galicia SA”, “SA”.

, 4 .

  1. .

  2. , .

  3. , .

  4. , .

, . .

  1. SearchSymbolIndex .

  2. SearchPopularIndex (10% ).

  3. SearchInstrumentIndex .

— .

var searchedData []searchindex.SearchData

searchedData = r.SearchSymbolIndex.Search(searchindex.SearchParams{
    Text: key,
    OutputSize: outputSize,
    Matching: searchsymbol.Strict,
})

searchedData = r.SearchPopularIndex.Search(searchindex.SearchParams{
    Text: key,
    OutputSize: outputSize,
    Matching: searchsymbol.Beginning,
    StartValues: searchedData,
})

searchedData = r.SearchSymbolIndex.Search(searchindex.SearchParams{
    Text: key,
    OutputSize: outputSize,
    Matching: searchindex.Beginning,
    StartValues: searchedData,
})

searchedData = r.SearchInstrumentIndex.Search(searchindex.SearchParams{
    Text: key,
    OutputSize: outputSize,
    Matching: searchindex.Beginning,
    StartValues: searchedData,
})

StartValues — , , , , , (OutputSize).

searchindex.Strict —  . 

searchindex.Beginning — .

, . 300 . , .

, 55000 2 , . 4 100-200 ( http ), .

Cette recherche est actuellement utilisée dans l'API financière pour les développeurs, un exemple peut être consulté sur cette page où vous pouvez l'essayer en direct.




All Articles