|
Home > Archive > Microsoft Content Management Server > December 2005 > Some question
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
|
| Hi all i have some question about CMS:
1)I have a website where i post at least 3000 posting per year, each
post has at least an image.
My question is about performance:if ,for example, i cycle in my posting
list via code to build a list, at what number of total posting i'll
notice a significant slowness of my site? (5000,10000,20000 posting?).
Should i divide the posting by month?
2)Can i made a sortBy placeholder value that has the same ID in a
specified channel? I mean if there is already a method in the .NET
framework.
3)Can i get the posting GUID value before it is saved, for example
after i click create new page link?
4)If i want to get a list of posting that will be published in the
future (i set the start date in the page properties), how can i get it?
there is a specific sort by?
Thanks in advance.
| |
| Stefan [MSFT] 2005-12-13, 5:55 pm |
| Hi GG,
1) check out the following whitepaper for general recommendations:
http://www.microsoft.com/downloads/...&DisplayLang=en
The most important piece: ensure that there is not a single channel holding
more than 300 items (direct child channels + postings).
2) That is not possible with MCMS itself. You could copy the content into a
datatable and then use a dataview to do the sort.
3) That is not possible. The GUID is generated during the creation of the
posting. The earliest point to get the GUID is in the CmsPosting_Created
event handler.
4) There is no way in MCMS to get this in an automated manner. You would
need to enumerate the repository. Or you could implement a workflow event
that writes this information on posting change to an external database and
then do a lookup there.
Cheers,
Stefan
--
This posting is provided "AS IS" with no warranties, and confers no rights
New to MCMS?
Check out this book: Building Websites Using MCMS: http://tinyurl.com/6zj44
Check out the new book as well: Advanced MCMS development:
http://tinyurl.com/8ugwj
----------------------
"gg" <gigino@gmail.com> wrote in message
news:1134475242.430753.13320@g43g2000cwa.googlegroups.com...
> Hi all i have some question about CMS:
>
> 1)I have a website where i post at least 3000 posting per year, each
> post has at least an image.
> My question is about performance:if ,for example, i cycle in my posting
> list via code to build a list, at what number of total posting i'll
> notice a significant slowness of my site? (5000,10000,20000 posting?).
> Should i divide the posting by month?
>
> 2)Can i made a sortBy placeholder value that has the same ID in a
> specified channel? I mean if there is already a method in the .NET
> framework.
>
> 3)Can i get the posting GUID value before it is saved, for example
> after i click create new page link?
>
> 4)If i want to get a list of posting that will be published in the
> future (i set the start date in the page properties), how can i get it?
> there is a specific sort by?
>
> Thanks in advance.
>
| |
|
| Hi Stefan, first of all thanks for the reply.
A question for the future, will MCMS be replace by another application?
And when?
Tnx.
| |
| Stefan [MSFT] 2005-12-15, 7:48 am |
| Hi GG,
next version of MCMS will be part of the Office 12 product suite.
Cheers,
Stefan
--
This posting is provided "AS IS" with no warranties, and confers no rights
New to MCMS?
Check out this book: Building Websites Using MCMS: http://tinyurl.com/6zj44
Check out the new book as well: Advanced MCMS development:
http://tinyurl.com/8ugwj
----------------------
"gg" <gigino@gmail.com> wrote in message
news:1134640860.586939.319500@z14g2000cwz.googlegroups.com...
> Hi Stefan, first of all thanks for the reply.
>
> A question for the future, will MCMS be replace by another application?
> And when?
>
> Tnx.
>
|
|
|
|
|