mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-29 12:52:27 -05:00
[feature] add support for polls + receiving federated status edits (#2330)
This commit is contained in:
parent
7204ccedc3
commit
e9e5dc5a40
84 changed files with 3992 additions and 570 deletions
|
|
@ -204,6 +204,9 @@ type CacheConfiguration struct {
|
|||
MediaMemRatio float64 `name:"media-mem-ratio"`
|
||||
MentionMemRatio float64 `name:"mention-mem-ratio"`
|
||||
NotificationMemRatio float64 `name:"notification-mem-ratio"`
|
||||
PollMemRatio float64 `name:"poll-mem-ratio"`
|
||||
PollVoteMemRatio float64 `name:"poll-vote-mem-ratio"`
|
||||
PollVoteIDsMemRatio float64 `name:"poll-vote-ids-mem-ratio"`
|
||||
ReportMemRatio float64 `name:"report-mem-ratio"`
|
||||
StatusMemRatio float64 `name:"status-mem-ratio"`
|
||||
StatusFaveMemRatio float64 `name:"status-fave-mem-ratio"`
|
||||
|
|
|
|||
|
|
@ -171,6 +171,9 @@ var Defaults = Configuration{
|
|||
MediaMemRatio: 4,
|
||||
MentionMemRatio: 2,
|
||||
NotificationMemRatio: 2,
|
||||
PollMemRatio: 1,
|
||||
PollVoteMemRatio: 2,
|
||||
PollVoteIDsMemRatio: 2,
|
||||
ReportMemRatio: 1,
|
||||
StatusMemRatio: 5,
|
||||
StatusFaveMemRatio: 2,
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ func main() {
|
|||
fmt.Fprint(output, ")\n\n")
|
||||
generateFields(output, nil, reflect.TypeOf(config.Configuration{}))
|
||||
_ = output.Close()
|
||||
_ = exec.Command("gofumports", "-w", out).Run()
|
||||
_ = exec.Command("gofumpt", "-w", out).Run()
|
||||
|
||||
// The plan here is that eventually we might be able
|
||||
// to generate an example configuration from struct tags
|
||||
|
|
|
|||
|
|
@ -3099,6 +3099,81 @@ func GetCacheNotificationMemRatio() float64 { return global.GetCacheNotification
|
|||
// SetCacheNotificationMemRatio safely sets the value for global configuration 'Cache.NotificationMemRatio' field
|
||||
func SetCacheNotificationMemRatio(v float64) { global.SetCacheNotificationMemRatio(v) }
|
||||
|
||||
// GetCachePollMemRatio safely fetches the Configuration value for state's 'Cache.PollMemRatio' field
|
||||
func (st *ConfigState) GetCachePollMemRatio() (v float64) {
|
||||
st.mutex.RLock()
|
||||
v = st.config.Cache.PollMemRatio
|
||||
st.mutex.RUnlock()
|
||||
return
|
||||
}
|
||||
|
||||
// SetCachePollMemRatio safely sets the Configuration value for state's 'Cache.PollMemRatio' field
|
||||
func (st *ConfigState) SetCachePollMemRatio(v float64) {
|
||||
st.mutex.Lock()
|
||||
defer st.mutex.Unlock()
|
||||
st.config.Cache.PollMemRatio = v
|
||||
st.reloadToViper()
|
||||
}
|
||||
|
||||
// CachePollMemRatioFlag returns the flag name for the 'Cache.PollMemRatio' field
|
||||
func CachePollMemRatioFlag() string { return "cache-poll-mem-ratio" }
|
||||
|
||||
// GetCachePollMemRatio safely fetches the value for global configuration 'Cache.PollMemRatio' field
|
||||
func GetCachePollMemRatio() float64 { return global.GetCachePollMemRatio() }
|
||||
|
||||
// SetCachePollMemRatio safely sets the value for global configuration 'Cache.PollMemRatio' field
|
||||
func SetCachePollMemRatio(v float64) { global.SetCachePollMemRatio(v) }
|
||||
|
||||
// GetCachePollVoteMemRatio safely fetches the Configuration value for state's 'Cache.PollVoteMemRatio' field
|
||||
func (st *ConfigState) GetCachePollVoteMemRatio() (v float64) {
|
||||
st.mutex.RLock()
|
||||
v = st.config.Cache.PollVoteMemRatio
|
||||
st.mutex.RUnlock()
|
||||
return
|
||||
}
|
||||
|
||||
// SetCachePollVoteMemRatio safely sets the Configuration value for state's 'Cache.PollVoteMemRatio' field
|
||||
func (st *ConfigState) SetCachePollVoteMemRatio(v float64) {
|
||||
st.mutex.Lock()
|
||||
defer st.mutex.Unlock()
|
||||
st.config.Cache.PollVoteMemRatio = v
|
||||
st.reloadToViper()
|
||||
}
|
||||
|
||||
// CachePollVoteMemRatioFlag returns the flag name for the 'Cache.PollVoteMemRatio' field
|
||||
func CachePollVoteMemRatioFlag() string { return "cache-poll-vote-mem-ratio" }
|
||||
|
||||
// GetCachePollVoteMemRatio safely fetches the value for global configuration 'Cache.PollVoteMemRatio' field
|
||||
func GetCachePollVoteMemRatio() float64 { return global.GetCachePollVoteMemRatio() }
|
||||
|
||||
// SetCachePollVoteMemRatio safely sets the value for global configuration 'Cache.PollVoteMemRatio' field
|
||||
func SetCachePollVoteMemRatio(v float64) { global.SetCachePollVoteMemRatio(v) }
|
||||
|
||||
// GetCachePollVoteIDsMemRatio safely fetches the Configuration value for state's 'Cache.PollVoteIDsMemRatio' field
|
||||
func (st *ConfigState) GetCachePollVoteIDsMemRatio() (v float64) {
|
||||
st.mutex.RLock()
|
||||
v = st.config.Cache.PollVoteIDsMemRatio
|
||||
st.mutex.RUnlock()
|
||||
return
|
||||
}
|
||||
|
||||
// SetCachePollVoteIDsMemRatio safely sets the Configuration value for state's 'Cache.PollVoteIDsMemRatio' field
|
||||
func (st *ConfigState) SetCachePollVoteIDsMemRatio(v float64) {
|
||||
st.mutex.Lock()
|
||||
defer st.mutex.Unlock()
|
||||
st.config.Cache.PollVoteIDsMemRatio = v
|
||||
st.reloadToViper()
|
||||
}
|
||||
|
||||
// CachePollVoteIDsMemRatioFlag returns the flag name for the 'Cache.PollVoteIDsMemRatio' field
|
||||
func CachePollVoteIDsMemRatioFlag() string { return "cache-poll-vote-ids-mem-ratio" }
|
||||
|
||||
// GetCachePollVoteIDsMemRatio safely fetches the value for global configuration 'Cache.PollVoteIDsMemRatio' field
|
||||
func GetCachePollVoteIDsMemRatio() float64 { return global.GetCachePollVoteIDsMemRatio() }
|
||||
|
||||
// SetCachePollVoteIDsMemRatio safely sets the value for global configuration 'Cache.PollVoteIDsMemRatio' field
|
||||
func SetCachePollVoteIDsMemRatio(v float64) { global.SetCachePollVoteIDsMemRatio(v) }
|
||||
|
||||
// GetCacheReportMemRatio safely fetches the Configuration value for state's 'Cache.ReportMemRatio' field
|
||||
func (st *ConfigState) GetCacheReportMemRatio() (v float64) {
|
||||
st.mutex.RLock()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue