memos/store/store.go

30 lines
703 B
Go
Raw Normal View History

2022-05-16 07:37:23 +08:00
package store
2022-05-22 00:59:22 +08:00
import (
"sync"
2022-06-27 22:09:06 +08:00
2023-09-17 22:55:13 +08:00
"github.com/usememos/memos/server/profile"
2022-05-22 00:59:22 +08:00
)
2022-08-24 21:53:12 +08:00
// Store provides database access to all raw objects.
2022-05-16 07:37:23 +08:00
type Store struct {
2024-04-13 10:50:25 +08:00
Profile *profile.Profile
driver Driver
workspaceSettingCache sync.Map // map[string]*storepb.WorkspaceSetting
userCache sync.Map // map[int]*User
2024-05-12 13:19:31 +08:00
userSettingCache sync.Map // map[string]*storepb.UserSetting
2024-04-17 08:56:52 +08:00
idpCache sync.Map // map[int]*storepb.IdentityProvider
2022-05-16 07:37:23 +08:00
}
2022-08-24 21:53:12 +08:00
// New creates a new instance of Store.
func New(driver Driver, profile *profile.Profile) *Store {
2022-05-16 07:37:23 +08:00
return &Store{
driver: driver,
Profile: profile,
2022-05-16 07:37:23 +08:00
}
}
2022-11-06 12:21:58 +08:00
func (s *Store) Close() error {
return s.driver.Close()
2022-11-06 12:21:58 +08:00
}