Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escape special characters +-&|!(){}[]^"~*?:\ - e.g. \+ \* \!
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Profile picture
郭霏
Moderator
1 Question, 1 Answer
  Active since 26 September 2018
  Last activity 5 years ago

Reputation

26

Badges 1

Eureka!
3 Votes
1 Answers
7K Views
3 Votes 1 Answers 7K Views
How to set the parameters for startup scoold
5 years ago
0 How to run scoold with docker compose

Docker Compose

You can start the whole stack, Para + Scoold, with a single command using docker-compose.
First, create a new directory and copy docker-compose.yml to it from this repository. Create these 4 files:

  1. para.env - containing environment variables for Para, like JAVA_OPTS
  2. scoold.env - containing environment variables for Scoold, like JAVA_OPTS
  3. para-application.conf - containing the Para configuration
  4. scoold-application.conf - containing the S...
5 years ago