Conditions | 9 |
Total Lines | 68 |
Code Lines | 43 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
1 | package postgres |
||
31 | func New(uri string, opts ...Option) (*Postgres, error) { |
||
32 | pg := &Postgres{ |
||
33 | maxOpenConnections: _defaultMaxOpenConnections, |
||
34 | maxIdleConnections: _defaultMaxIdleConnections, |
||
35 | maxDataPerWrite: _defaultMaxDataPerWrite, |
||
36 | maxRetries: _defaultMaxRetries, |
||
37 | watchBufferSize: _defaultWatchBufferSize, |
||
38 | simpleMode: _defaultSimpleMode, |
||
39 | } |
||
40 | |||
41 | // Custom options |
||
42 | for _, opt := range opts { |
||
43 | opt(pg) |
||
44 | } |
||
45 | |||
46 | pg.Builder = squirrel.StatementBuilder.PlaceholderFormat(squirrel.Dollar) |
||
47 | |||
48 | writeConfig, err := pgxpool.ParseConfig(uri) |
||
49 | if err != nil { |
||
50 | return nil, err |
||
51 | } |
||
52 | |||
53 | readConfig, err := pgxpool.ParseConfig(uri) |
||
54 | if err != nil { |
||
55 | return nil, err |
||
56 | } |
||
57 | |||
58 | if pg.simpleMode { |
||
59 | writeConfig.ConnConfig.DefaultQueryExecMode = pgx.QueryExecModeSimpleProtocol |
||
60 | readConfig.ConnConfig.DefaultQueryExecMode = pgx.QueryExecModeSimpleProtocol |
||
61 | } |
||
62 | |||
63 | writeConfig.MinConns = int32(pg.maxIdleConnections) |
||
64 | readConfig.MinConns = int32(pg.maxIdleConnections) |
||
65 | |||
66 | writeConfig.MaxConns = int32(pg.maxOpenConnections) |
||
67 | readConfig.MaxConns = int32(pg.maxOpenConnections) |
||
68 | |||
69 | writeConfig.MaxConnIdleTime = pg.maxConnectionIdleTime |
||
70 | readConfig.MaxConnIdleTime = pg.maxConnectionIdleTime |
||
71 | |||
72 | writeConfig.MaxConnLifetime = pg.maxConnectionLifeTime |
||
73 | readConfig.MaxConnLifetime = pg.maxConnectionLifeTime |
||
74 | |||
75 | writeConfig.MaxConnLifetimeJitter = time.Duration(0.2 * float64(pg.maxConnectionLifeTime)) |
||
76 | readConfig.MaxConnLifetimeJitter = time.Duration(0.2 * float64(pg.maxConnectionLifeTime)) |
||
77 | |||
78 | if _, ok := readConfig.ConnConfig.Config.RuntimeParams["plan_cache_mode"]; !ok { |
||
79 | readConfig.ConnConfig.Config.RuntimeParams["plan_cache_mode"] = "force_custom_plan" |
||
80 | } |
||
81 | |||
82 | if _, ok := writeConfig.ConnConfig.Config.RuntimeParams["plan_cache_mode"]; !ok { |
||
83 | writeConfig.ConnConfig.Config.RuntimeParams["plan_cache_mode"] = "force_custom_plan" |
||
84 | } |
||
85 | |||
86 | initialContext, cancelInit := context.WithTimeout(context.Background(), 5*time.Second) |
||
87 | defer cancelInit() |
||
88 | |||
89 | pg.WritePool, err = pgxpool.NewWithConfig(initialContext, writeConfig) |
||
90 | if err != nil { |
||
91 | return nil, err |
||
92 | } |
||
93 | pg.ReadPool, err = pgxpool.NewWithConfig(initialContext, readConfig) |
||
94 | if err != nil { |
||
95 | return nil, err |
||
96 | } |
||
97 | |||
98 | return pg, nil |
||
99 | } |
||
134 |