lixiaojun
2024-03-26 3e14440cb203d28923ba9cfec39ceff15f2c35e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
  "$schema": "https://gitee.com/dotnetchina/Furion/raw/v4/schemas/v4/furion-schema.json",
 
 
  "Run": {
    "DataBase": {
      "DbType": "PostgreSql", //PostgreSql¡¢SQLite
      "Factory": {
        "EnableCache": true,
        "CacheTime": 10
      },
      "PostgreSql": {
        "ConnectString": "PORT=5432;DATABASE=yw_run;HOST=localhost;PASSWORD=123456;USER ID=postgres;",
        "RecordConnectString": "PORT=5432;DATABASE=yw_run_record;HOST=localhost;PASSWORD=123456;USER ID=postgres;"
      },
      "SQLite": {
        "ConnectString": "Data Source=yw_run.db;",
        "RecordConnectString": "Data Source=yw_run_record.db;"
      }
    },
    "LCache": {
      "Prefix": "yw",
      "LCacheType": "Redis", //Redis¡¢Medis
      "Factory": {
        "EnableCache": true,
        "CacheTime": 10
      }
    },
    "Queue": {
      "QueueType": "RabbitMq", //RabbitMq¡¢Memory
      "Factory": {
        "EnableCache": true,
        "CacheTime": 10
      }
    },
    "Exchange": {
      "ExchangeType": "RabbitMq", //RabbitMq¡¢Memory
      "Factory": {
        "EnableCache": true,
        "CacheTime": 10
      }
    },
    "Run": {
      "ExchangeName": "yw-run-real-record-run-exchange"
    },
    "Task": {
      "Frequency": 60
    }
  }
 
 
}