Squashed commit of the following:
commit8e1b232d57Author: mountain <mountain@action2quare.com> Date: Wed Jul 19 09:37:02 2023 +0900 InMemory 그룹을 redis로 변경 commit01da5bb3a4Author: mountain <mountain@action2quare.com> Date: Tue Jul 18 01:31:39 2023 +0900 body를 marshaling하고 클라이언트에서 flatten함 commitba61a11659Author: mountain <mountain@action2quare.com> Date: Mon Jul 17 17:47:07 2023 +0900 gob 등록 commit67cca13326Author: mountain <mountain@action2quare.com> Date: Sun Jul 16 18:41:24 2023 +0900 모듈 업데이트 commit272c696c59Author: mountain <mountain@action2quare.com> Date: Sun Jul 16 17:29:21 2023 +0900 json value 다시 되돌림 commitaa568ec3faAuthor: mountain <mountain@action2quare.com> Date: Sun Jul 16 17:26:19 2023 +0900 SetOption 타입 변경 commitb9c4d8b21bAuthor: mountain <mountain@action2quare.com> Date: Sun Jul 16 17:15:08 2023 +0900 objvalue marshalling 수정 commit99834c1461Author: mountain <mountain@action2quare.com> Date: Sun Jul 16 17:01:06 2023 +0900 objlen 수정 commit592112219eAuthor: mountain <mountain@action2quare.com> Date: Sun Jul 16 16:38:05 2023 +0900 gocommon 업데이트 commit62485b6d54Author: mountain <mountain@action2quare.com> Date: Sun Jul 16 15:36:20 2023 +0900 redis json 마이그레이션 완료 commitd36dd13bb7Author: mountain <mountain@action2quare.com> Date: Sun Jul 16 02:51:41 2023 +0900 redis stack 사용
This commit is contained in:
@ -1,65 +1,72 @@
|
||||
{
|
||||
"region_storage" : {
|
||||
"default" : {
|
||||
"mongo" : "mongodb://192.168.8.94:27017/?replicaSet=repl01&retrywrites=false",
|
||||
"redis" : {
|
||||
"url" : "redis://192.168.8.94:6379",
|
||||
"offset" : {
|
||||
"cache" : 0,
|
||||
"session" : 1,
|
||||
"ranking" : 2
|
||||
}
|
||||
"region_storage": {
|
||||
"default": {
|
||||
"mongo": "mongodb://192.168.8.94:27017/?replicaSet=repl01&retrywrites=false",
|
||||
"redis": {
|
||||
"cache": "redis://192.168.8.94:6380/0",
|
||||
"session": "redis://192.168.8.94:6380/1",
|
||||
"ranking": "redis://192.168.8.94:6380/2",
|
||||
"wshandler": "redis://192.168.8.94:6380/3",
|
||||
"tavern": "redis://192.168.8.94:6380/4"
|
||||
}
|
||||
},
|
||||
"dev" : {
|
||||
"mongo" : "mongodb://192.168.8.94:27017/?replicaSet=repl01&retrywrites=false",
|
||||
"redis" : {
|
||||
"url" : "redis://192.168.8.94:6379",
|
||||
"offset" : {
|
||||
"cache" : 0,
|
||||
"session" : 1,
|
||||
"ranking" : 2
|
||||
}
|
||||
"dev": {
|
||||
"mongo": "mongodb://192.168.8.94:27017/?replicaSet=repl01&retrywrites=false",
|
||||
"redis": {
|
||||
"cache": "redis://192.168.8.94:6380/4",
|
||||
"session": "redis://192.168.8.94:6380/5",
|
||||
"ranking": "redis://192.168.8.94:6380/6",
|
||||
"wshandler": "redis://192.168.8.94:6380/7",
|
||||
"tavern": "redis://192.168.8.94:6380/8"
|
||||
}
|
||||
}
|
||||
},
|
||||
"maingate_mongodb_url" : "mongodb://192.168.8.94:27017/?replicaSet=repl01&retrywrites=false",
|
||||
"maingate_service_url" : "http://localhost/maingate",
|
||||
"maingate_api_token" : "63d08aa34f0162622c11284b",
|
||||
|
||||
"tavern_service_url" : "http://localhost/tavern",
|
||||
"tavern_group_types" : {
|
||||
"subjugate" : {
|
||||
"text_search_field" : ["name"],
|
||||
"unique_index" : ["name,_id", "_id,members", "name,hidden"],
|
||||
"search_index" : ["rules"],
|
||||
"member_index" : ["_gid,candidate,luts","_gid,luts","_gid,expiring"],
|
||||
"invite_ttl" : 30,
|
||||
"candidate_ttl" : 3600,
|
||||
"invitee_exlusive" : true,
|
||||
"invitee_is_member" : true,
|
||||
"max_member" : 4
|
||||
"maingate_mongodb_url": "mongodb://192.168.8.94:27017/?replicaSet=repl01&retrywrites=false",
|
||||
"maingate_service_url": "http://localhost/maingate",
|
||||
"maingate_api_token": "63d08aa34f0162622c11284b",
|
||||
"tavern_service_url": "http://localhost/tavern",
|
||||
"tavern_group_types": {
|
||||
"subjugate": {
|
||||
"text_search_field": [
|
||||
"name"
|
||||
],
|
||||
"unique_index": [
|
||||
"name,_id",
|
||||
"_id,members",
|
||||
"name,hidden"
|
||||
],
|
||||
"search_index": [
|
||||
"rules"
|
||||
],
|
||||
"member_index": [
|
||||
"_gid,candidate,luts",
|
||||
"_gid,luts",
|
||||
"_gid,expiring"
|
||||
],
|
||||
"invite_ttl": 30,
|
||||
"candidate_ttl": 3600,
|
||||
"invitee_exlusive": true,
|
||||
"invitee_is_member": true,
|
||||
"max_member": 4
|
||||
},
|
||||
"lobby" : {
|
||||
"max_member" : 3,
|
||||
"invitee_exlusive" : true,
|
||||
"invitee_is_member" : true,
|
||||
"transient" : true,
|
||||
"invite_ttl" : 30
|
||||
"lobby": {
|
||||
"max_member": 3,
|
||||
"invitee_exlusive": true,
|
||||
"invitee_is_member": true,
|
||||
"transient": true,
|
||||
"invite_ttl": 30
|
||||
}
|
||||
},
|
||||
|
||||
"ws_sync_pipeline" : "redis://192.168.8.94:6379/3",
|
||||
|
||||
"services" : {
|
||||
"kingdom" : {
|
||||
"개발중" : {
|
||||
"url" :"http://localhost/warehouse/dev",
|
||||
"development" : true
|
||||
|
||||
"services": {
|
||||
"kingdom": {
|
||||
"개발중": {
|
||||
"url": "http://localhost/warehouse/dev",
|
||||
"development": true
|
||||
},
|
||||
"개인서버" : {
|
||||
"url" : "http://localhost/warehouse/private",
|
||||
"development" : false
|
||||
"개인서버": {
|
||||
"url": "http://localhost/warehouse/private",
|
||||
"development": false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user