1234567891011121314151617181920212223242526272829303132333435363738 |
- package store
- import (
- "context"
- "sync"
- "github.com/usememos/memos/server/profile"
- )
- // Store provides database access to all raw objects.
- type Store struct {
- Profile *profile.Profile
- driver Driver
- systemSettingCache sync.Map // map[string]*SystemSetting
- userCache sync.Map // map[int]*User
- userSettingCache sync.Map // map[string]*UserSetting
- idpCache sync.Map // map[int]*IdentityProvider
- }
- // New creates a new instance of Store.
- func New(driver Driver, profile *profile.Profile) *Store {
- return &Store{
- Profile: profile,
- driver: driver,
- }
- }
- func (s *Store) BackupTo(ctx context.Context, filename string) error {
- return s.driver.BackupTo(ctx, filename)
- }
- func (s *Store) Vacuum(ctx context.Context) error {
- return s.driver.Vacuum(ctx)
- }
- func (s *Store) Close() error {
- return s.driver.Close()
- }
|