<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Can I cache my data for TimeSlider tool? in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/can-i-cache-my-data-for-timeslider-tool/m-p/531119#M13634</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;the TimeSlider is just used to pick a StartDate and EndDate which we refer to in the API as a TimeExtent. The TimeSlider is usually bound to the Map.TimeExtent property, when the user interacts with the TimeSlider it changes the TimeExtent property on the Map. when the TimeExtent property of the map changes it loops through its layer collection looking for layer types that support time data. If it finds a layer type that is TimeAware then it will request the data from the service and pass along the time values so that the returning data matches the TimeExtent. There could be caching in two places, caching can be occuring on the REST service, when the REST service see url that is identical to a request that it recently repsonded to, then it will pull it from cache to be more preforment, The second place you have caching is in the browser, if the browser sees a url that is identical to one it has already responded to it will return the cached response.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;One more thing to note is there is a limit on how many features will return from the server, I believe the limit is 1,000 features for a single service request for ArcGIS Server v10. It was only 500 features in v9.3. So if there are 10,000 features your only getting 1,000 of those features. So If you are using the TimeSlider and requesting a small date range you may get back 500 features, but then you increase the range which is valid for 1,500 features, but only 1,000 features will come back. Hope this information helps.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Jun 2011 16:20:43 GMT</pubDate>
    <dc:creator>ChristopherHill</dc:creator>
    <dc:date>2011-06-02T16:20:43Z</dc:date>
    <item>
      <title>Can I cache my data for TimeSlider tool?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/can-i-cache-my-data-for-timeslider-tool/m-p/531118#M13633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm wondering if the TimeSlider will work on data that is cached?&amp;nbsp; Reason being, that I'm getting some inconsistent results on my Silverlight application that uses a TimeSlider.&amp;nbsp; I'm pretty much using the exact sample that ESRI has here (&lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#TimeMapService"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#TimeMapService&lt;/A&gt;&lt;SPAN&gt;) but the Dynamic Service I'm using has two featureclasses that have over 10,000 features and my Silverlight Application doesn't always show all the data in TimeSlider mode Dynamically creating the cache&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 May 2011 20:19:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/can-i-cache-my-data-for-timeslider-tool/m-p/531118#M13633</guid>
      <dc:creator>JoshV</dc:creator>
      <dc:date>2011-05-31T20:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: Can I cache my data for TimeSlider tool?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/can-i-cache-my-data-for-timeslider-tool/m-p/531119#M13634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;the TimeSlider is just used to pick a StartDate and EndDate which we refer to in the API as a TimeExtent. The TimeSlider is usually bound to the Map.TimeExtent property, when the user interacts with the TimeSlider it changes the TimeExtent property on the Map. when the TimeExtent property of the map changes it loops through its layer collection looking for layer types that support time data. If it finds a layer type that is TimeAware then it will request the data from the service and pass along the time values so that the returning data matches the TimeExtent. There could be caching in two places, caching can be occuring on the REST service, when the REST service see url that is identical to a request that it recently repsonded to, then it will pull it from cache to be more preforment, The second place you have caching is in the browser, if the browser sees a url that is identical to one it has already responded to it will return the cached response.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;One more thing to note is there is a limit on how many features will return from the server, I believe the limit is 1,000 features for a single service request for ArcGIS Server v10. It was only 500 features in v9.3. So if there are 10,000 features your only getting 1,000 of those features. So If you are using the TimeSlider and requesting a small date range you may get back 500 features, but then you increase the range which is valid for 1,500 features, but only 1,000 features will come back. Hope this information helps.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2011 16:20:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/can-i-cache-my-data-for-timeslider-tool/m-p/531119#M13634</guid>
      <dc:creator>ChristopherHill</dc:creator>
      <dc:date>2011-06-02T16:20:43Z</dc:date>
    </item>
    <item>
      <title>Re: Can I cache my data for TimeSlider tool?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/can-i-cache-my-data-for-timeslider-tool/m-p/531120#M13635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Great explanation Chris, I appreciate it.&amp;nbsp; How can I increase the features to something higher than a 1,000 features?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2011 16:26:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/can-i-cache-my-data-for-timeslider-tool/m-p/531120#M13635</guid>
      <dc:creator>JoshV</dc:creator>
      <dc:date>2011-06-02T16:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Can I cache my data for TimeSlider tool?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/can-i-cache-my-data-for-timeslider-tool/m-p/531121#M13636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This is a setting in an config file in the REST WebService.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;However I would generally recommend against this. It's a LOT of features to bring down on the client and is not going to perform well (slow startup-time and poor rendering performance). Instead render your features using ArcGISDynamicMapServiceLayer instead of FeatureLayer, which is specifically optimized to render map objects very fast.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2011 22:44:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/can-i-cache-my-data-for-timeslider-tool/m-p/531121#M13636</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2011-06-03T22:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: Can I cache my data for TimeSlider tool?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/can-i-cache-my-data-for-timeslider-tool/m-p/531122#M13637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;This is a setting in an config file in the REST WebService.&lt;BR /&gt;However I would generally recommend against this. It's a LOT of features to bring down on the client and is not going to perform well (slow startup-time and poor rendering performance). Instead render your features using ArcGISDynamicMapServiceLayer instead of FeatureLayer, which is specifically optimized to render map objects very fast.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Morten-&amp;nbsp; Is this setting you are referring to called UserServiceCacheLimit??&amp;nbsp; Is the file you are referring to in inetpub\wwwroot\ArcGIS\rest\rest.config? Also if I make a change to that file do I need to restart the SOM to see changes?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;many thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2011 11:24:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/can-i-cache-my-data-for-timeslider-tool/m-p/531122#M13637</guid>
      <dc:creator>JoshV</dc:creator>
      <dc:date>2011-06-06T11:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: Can I cache my data for TimeSlider tool?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/can-i-cache-my-data-for-timeslider-tool/m-p/531123#M13638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Josh,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can set the maximum number of features returned either in ArcCatalog (with an Admin connection to the server - version 10 only), Server Manager (on the Parameters tab when viewing a Service's properties) or by editing the config file for the service, which is typically found in c:\program files\ArcGIS\Server10.0\server\user\cfg.&amp;nbsp; In the .cfg file for the service, set the value for the &amp;lt;MaxRecordCount&amp;gt; tag.&amp;nbsp; I believe you have to restart the SOM for this to take effect.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2011 12:54:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/can-i-cache-my-data-for-timeslider-tool/m-p/531123#M13638</guid>
      <dc:creator>TerryGiles</dc:creator>
      <dc:date>2011-06-07T12:54:55Z</dc:date>
    </item>
  </channel>
</rss>

