- Cache synchronization using QRESYNC/CONDSTORE

- Fixed message ID updates in cache
- Changed message flags handling + some fixes (e.g. fixed messages listing after delete)
This commit is contained in:
alecpl
2011-09-18 09:02:35 +00:00
parent 30f50556c1
commit 609d3923d7
19 changed files with 478 additions and 271 deletions

View File

@@ -11,6 +11,7 @@ CREATE TABLE [dbo].[cache_index] (
[user_id] [int] NOT NULL ,
[mailbox] [varchar] (128) COLLATE Latin1_General_CI_AI NOT NULL ,
[changed] [datetime] NOT NULL ,
[valid] [char] (1) COLLATE Latin1_General_CI_AI NOT NULL ,
[data] [text] COLLATE Latin1_General_CI_AI NOT NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
@@ -29,12 +30,7 @@ CREATE TABLE [dbo].[cache_messages] (
[uid] [int] NOT NULL ,
[changed] [datetime] NOT NULL ,
[data] [text] COLLATE Latin1_General_CI_AI NOT NULL
[seen] [char](1) NOT NULL ,
[deleted] [char](1) NOT NULL ,
[answered] [char](1) NOT NULL ,
[forwarded] [char](1) NOT NULL ,
[flagged] [char](1) NOT NULL ,
[mdnsent] [char](1) NOT NULL ,
[flags] [int](1) NOT NULL ,
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
@@ -229,12 +225,7 @@ GO
ALTER TABLE [dbo].[cache_messages] ADD
CONSTRAINT [DF_cache_messages_changed] DEFAULT (getdate()) FOR [changed]
CONSTRAINT [DF_cache_messages_seen] DEFAULT (0) FOR [seen],
CONSTRAINT [DF_cache_messages_deleted] DEFAULT (0) FOR [deleted],
CONSTRAINT [DF_cache_messages_answered] DEFAULT (0) FOR [answered],
CONSTRAINT [DF_cache_messages_forwarded] DEFAULT (0) FOR [forwarded],
CONSTRAINT [DF_cache_messages_flagged] DEFAULT (0) FOR [flagged],
CONSTRAINT [DF_cache_messages_mdnsent] DEFAULT (0) FOR [mdnsent],
CONSTRAINT [DF_cache_messages_flags] DEFAULT (0) FOR [flags],
GO
CREATE INDEX [IX_cache_messages_user_id] ON [dbo].[cache_messages]([user_id]) ON [PRIMARY]