As easy as 1, 2, 3!
Updated:
- Aug, 08, 2022 update
config
docs for npm 8+ - Jul 27, 2021 add private scopes
- Jul 22, 2021 add dist tags
- Jun 20, 2021 update for
--access=public
- Sep 07, 2020 update docs for
npm version
package com.stample.search; | |
import com.google.common.collect.Collections2; | |
import com.stample.search.engine.SearchEngineBuilder; | |
import com.stample.search.enums.EnumIndex; | |
import com.stample.search.enums.EnumType; | |
import org.elasticsearch.action.admin.indices.analyze.AnalyzeResponse; | |
import org.elasticsearch.action.index.IndexResponse; | |
import org.elasticsearch.client.AdminClient; | |
import org.elasticsearch.client.Client; |
# Remove old data | |
curl -XDELETE "http://localhost:9200/french" | |
# Create index with settings | |
curl -XPOST "http://localhost:9200/french/" -d ' | |
{ | |
"settings":{ | |
"index":{ | |
"analysis":{ | |
"analyzer":{ |
/* | |
* This work is free. You can redistribute it and/or modify it under the | |
* terms of the Do What The Fuck You Want To Public License, Version 2, | |
* as published by Sam Hocevar. See the COPYING file for more details. | |
*/ | |
/* | |
* Easing Functions - inspired from http://gizma.com/easing/ | |
* only considering the t value for the range [0, 1] => [0, 1] | |
*/ | |
EasingFunctions = { |
import scalaz._ | |
import Scalaz._ | |
object MonadTransformerExamples { | |
def main(args: Array[String]) = run | |
def run { | |
// ------------------------------------------------------ | |
// Combined Option/Option | |
// ------------------------------------------------------ |