mirror of
https://github.com/valeriansaliou/sonic.git
synced 2022-10-24 19:50:51 +03:00
Revert #52
Signed-off-by: Valerian Saliou <valerian@valeriansaliou.name>
This commit is contained in:
@@ -3,7 +3,7 @@ name = "sonic-server"
|
||||
version = "1.1.0"
|
||||
description = "Fast, lightweight and schema-less search backend."
|
||||
readme = "README.md"
|
||||
license-file = "LICENSE.md"
|
||||
license = "MPL-2.0"
|
||||
edition = "2018"
|
||||
homepage = "https://github.com/valeriansaliou/sonic"
|
||||
repository = "https://github.com/valeriansaliou/sonic.git"
|
||||
|
||||
34
LICENSE.md
34
LICENSE.md
@@ -1,20 +1,5 @@
|
||||
Sonic OSS License Version 1.0
|
||||
=============================
|
||||
|
||||
0. Important Points
|
||||
-------------------
|
||||
|
||||
0.1. This license is based on Mozilla Public License 2.0. It has been
|
||||
renamed and modified according to the terms of MPL 2.0. The license
|
||||
steward has also been changed, according to the terms of MPL 2.0.
|
||||
|
||||
0.2. Re-selling of the software is forbidden. It means that it is forbidden
|
||||
to sell a service that builds its core value on the software. The
|
||||
software can be used for commercial purposes, but it should not be sold
|
||||
as-a-service (to make things clear, you are not allowed to build an
|
||||
Algolia competitor based on the licensed source code; ie. Algolia is
|
||||
an hosted search service sold as a SaaS). This statement does not apply
|
||||
for core project contributors.
|
||||
Mozilla Public License Version 2.0
|
||||
==================================
|
||||
|
||||
1. Definitions
|
||||
--------------
|
||||
@@ -333,10 +318,10 @@ shall not be used to construe this License against a Contributor.
|
||||
|
||||
10.1. New Versions
|
||||
|
||||
Valerian Saliou (a natural person) is the license steward. Except as
|
||||
provided in Sectio 10.3, no one other than the license steward has
|
||||
the right to modify or publish new versions of this License. Each
|
||||
version will be given a distinguishing version number.
|
||||
Mozilla Foundation is the license steward. Except as provided in Section
|
||||
10.3, no one other than the license steward has the right to modify or
|
||||
publish new versions of this License. Each version will be given a
|
||||
distinguishing version number.
|
||||
|
||||
10.2. Effect of New Versions
|
||||
|
||||
@@ -363,8 +348,9 @@ notice described in Exhibit B of this License must be attached.
|
||||
Exhibit A - Source Code Form License Notice
|
||||
-------------------------------------------
|
||||
|
||||
This Source Code Form is subject to the terms of the Sonic OSS
|
||||
License, v. 1.0.
|
||||
This Source Code Form is subject to the terms of the Mozilla Public
|
||||
License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
If it is not possible or desirable to put the notice in a particular
|
||||
file, then You may include the notice in a location (such as a LICENSE
|
||||
@@ -377,4 +363,4 @@ Exhibit B - "Incompatible With Secondary Licenses" Notice
|
||||
---------------------------------------------------------
|
||||
|
||||
This Source Code Form is "Incompatible With Secondary Licenses", as
|
||||
defined by the Sonic OSS License, v. 1.0.
|
||||
defined by the Mozilla Public License, v. 2.0.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
use hashbrown::HashMap;
|
||||
use rand::distributions::Alphanumeric;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub fn unescape(text: &str) -> String {
|
||||
// Pre-reserve a byte-aware required capacity as to avoid heap resizes (30% performance \
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
use std::io::{ErrorKind, Read, Write};
|
||||
use std::net::TcpStream;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
use std::net::TcpListener;
|
||||
use std::process;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! gen_channel_message_mode_handle {
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
use std::io::Write;
|
||||
use std::net::TcpStream;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
#[macro_use]
|
||||
mod macros;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub enum ChannelMode {
|
||||
Search,
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
use std::net::SocketAddr;
|
||||
use std::path::PathBuf;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
use std::net::SocketAddr;
|
||||
use std::path::PathBuf;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
use log;
|
||||
use log::{Level, LevelFilter, Metadata, Record, SetLoggerError};
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
mod defaults;
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
use std::fs::File;
|
||||
use std::io::Read;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
use crate::store::fst::StoreFSTPool;
|
||||
use crate::store::fst::{StoreFSTActionBuilder, StoreFSTMisc};
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
use crate::store::fst::StoreFSTActionBuilder;
|
||||
use crate::store::item::StoreItem;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
use crate::store::fst::StoreFSTActionBuilder;
|
||||
use crate::store::item::StoreItem;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
use crate::store::item::StoreItem;
|
||||
use crate::store::kv::{StoreKVAcquireMode, StoreKVActionBuilder, StoreKVPool};
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! executor_ensure_op {
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
#[macro_use]
|
||||
mod macros;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
use linked_hash_set::LinkedHashSet;
|
||||
use std::iter::FromIterator;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
use linked_hash_set::LinkedHashSet;
|
||||
use std::iter::FromIterator;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
use linked_hash_set::LinkedHashSet;
|
||||
use std::iter::FromIterator;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
use crate::lexer::token::TokenLexer;
|
||||
use crate::query::types::{QuerySearchID, QuerySearchLimit};
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
mod stopwords;
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
use hashbrown::HashSet;
|
||||
use whatlang::{Lang, Script};
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
use hashbrown::HashSet;
|
||||
use std::time::Instant;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
#![cfg_attr(feature = "benchmark", feature(test))]
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
use super::query::Query;
|
||||
use crate::lexer::token::{TokenLexerBuilder, TokenLexerMode};
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub mod builder;
|
||||
pub mod query;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
use super::types::*;
|
||||
use crate::lexer::token::TokenLexer;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub type QuerySearchID<'a> = &'a str;
|
||||
pub type QuerySearchLimit = u16;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_AFR: &[&'static str] = &[
|
||||
"'n", "aan", "af", "al", "as", "baie", "by", "daar", "dag", "dat", "die", "dit", "een", "ek",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_AKA: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_AMH: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_ARB: &[&'static str] = &[
|
||||
"،",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_AZJ: &[&'static str] = &[
|
||||
"a",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_BEL: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_BEN: &[&'static str] = &[
|
||||
"অতএব",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_BHO: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_BUL: &[&'static str] = &[
|
||||
"ð°",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_CEB: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_CES: &[&'static str] = &[
|
||||
"a",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_CMN: &[&'static str] = &[
|
||||
"、",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_DAN: &[&'static str] = &[
|
||||
"ad", "af", "aldrig", "alle", "alt", "anden", "andet", "andre", "at", "bare", "begge", "blev",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_DEU: &[&'static str] = &[
|
||||
"a",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_ELL: &[&'static str] = &[
|
||||
"αλλα",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_ENG: &[&'static str] = &[
|
||||
"'ll",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_EPO: &[&'static str] = &[
|
||||
"adiaŭ",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_EST: &[&'static str] = &[
|
||||
"aga", "ei", "et", "ja", "jah", "kas", "kui", "kõik", "ma", "me", "mida", "midagi", "mind",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_FIN: &[&'static str] = &[
|
||||
"aiemmin",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_FRA: &[&'static str] = &[
|
||||
"a",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_GUJ: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_HAT: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_HAU: &[&'static str] = &[
|
||||
"a", "amma", "ba", "ban", "ce", "cikin", "da", "don", "ga", "in", "ina", "ita", "ji", "ka",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_HEB: &[&'static str] = &[
|
||||
"אבל",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_HIN: &[&'static str] = &[
|
||||
"अंदर",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_HRV: &[&'static str] = &[
|
||||
"a", "ako", "ali", "bi", "bih", "bila", "bili", "bilo", "bio", "bismo", "biste", "biti",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_HUN: &[&'static str] = &[
|
||||
"a",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_IBO: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_ILO: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_IND: &[&'static str] = &[
|
||||
"ada",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_ITA: &[&'static str] = &[
|
||||
"a",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_JAV: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_JPN: &[&'static str] = &[
|
||||
"あそこ",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_KAN: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_KAT: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_KHM: &[&'static str] = &[
|
||||
"ៗ",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_KIN: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_KOR: &[&'static str] = &[
|
||||
"!",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_KUR: &[&'static str] = &[
|
||||
"ئێمە",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_LAV: &[&'static str] = &[
|
||||
"aiz",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_LIT: &[&'static str] = &[
|
||||
"abi",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_MAI: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_MAL: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_MAR: &[&'static str] = &[
|
||||
"अधिक",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_MKD: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_MLG: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// All stopwords are sourced from: https://github.com/stopwords-iso
|
||||
// Last update: 7th March 2019
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_MYA: &[&'static str] = &[
|
||||
"အပေါ်",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_NEP: &[&'static str] = &[
|
||||
"छ",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_NLD: &[&'static str] = &[
|
||||
"aan",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_NNO: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_NOB: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_NYA: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_ORI: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_ORM: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_PAN: &[&'static str] = &[
|
||||
"ਦੇ",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_PES: &[&'static str] = &[
|
||||
"!",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_POL: &[&'static str] = &[
|
||||
"a",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_POR: &[&'static str] = &[
|
||||
"a",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_RON: &[&'static str] = &[
|
||||
"a",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_RUN: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_RUS: &[&'static str] = &[
|
||||
"c",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_SIN: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_SKR: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_SLV: &[&'static str] = &[
|
||||
"a",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
// Notice: we do not have stopwords for this language yet.
|
||||
pub static STOPWORDS_SNA: &[&'static str] = &[];
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Fast, lightweight and schema-less search backend
|
||||
// Copyright: 2019, Valerian Saliou <valerian@valeriansaliou.name>
|
||||
// License: Sonic OSS License v1.0 (SOSSL v1.0)
|
||||
// License: Mozilla Public License v2.0 (MPL v2.0)
|
||||
|
||||
pub static STOPWORDS_SOM: &[&'static str] = &[
|
||||
"aad",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user