-
Notifications
You must be signed in to change notification settings - Fork 803
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
494 additions
and
199 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package version | ||
|
||
const Name = "0.2.3" | ||
const Name = "0.2.4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,14 @@ | |
|
||
# The database for caching, support Redis only: | ||
# redis://<user>:<password>@<host>:<port>/<db_number> | ||
cache_store = "redis://localhost:6379" | ||
cache_store = "redis://localhost:6379/0" | ||
|
||
# The database for persist data, support MySQL, Postgres, ClickHouse and MongoDB: | ||
# mysql://[username[:password]@][protocol[(address)]]/dbname[?param1=value1&...¶mN=valueN] | ||
# postgres://bob:[email protected]:5432/mydb?sslmode=verify-full | ||
# clickhouse://user:password@host[:port]/database?param1=value1&...¶mN=valueN | ||
# mongodb://[username:password@]host1[:port1][,...hostN[:portN]][/[defaultauthdb][?options]] | ||
data_store = "mysql://root@tcp(localhost:3306)/gorse?parseTime=true" | ||
data_store = "mysql://root:password@tcp(localhost:3306)/gorse?parseTime=true" | ||
|
||
# The cache size for recommended/popular/latest items. The default value is 100. | ||
cache_size = 200 | ||
|
@@ -42,8 +42,7 @@ port = 8086 # master port | |
host = "0.0.0.0" # master host | ||
http_port = 8088 # HTTP API port | ||
http_host = "0.0.0.0" # HTTP API host | ||
search_jobs = 2 # number of jobs for model search | ||
fit_jobs = 2 # number of jobs for model fitting | ||
n_jobs = 4 # number of working jobs | ||
meta_timeout = 10 # cluster meta timeout (second) | ||
|
||
# This section declares settings for the server node. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.