<?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: FGDB API is too slow in File Geodatabase API Questions</title>
    <link>https://community.esri.com/t5/file-geodatabase-api-questions/fgdb-api-is-too-slow/m-p/263411#M439</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe the problem is in&lt;/P&gt;&lt;OL class="dp-c" start="1"&gt;&lt;LI&gt;&lt;SPAN class="keyword"&gt;try&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;&lt;SPAN class="keyword"&gt;catch (Exception e)&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } &lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;this feature works slow enough when you catch exceptions.&lt;/P&gt;&lt;P&gt;I tried same code - it works well. Check console output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Nov 2015 08:44:29 GMT</pubDate>
    <dc:creator>PavelShkurko</dc:creator>
    <dc:date>2015-11-26T08:44:29Z</dc:date>
    <item>
      <title>FGDB API is too slow</title>
      <link>https://community.esri.com/t5/file-geodatabase-api-questions/fgdb-api-is-too-slow/m-p/263407#M435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have read all feature classes and their associated geodata like Point,polyline,polygon data. API is taking too much time in reading these data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code is as follow:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Table testtable = geodatabase.OpenTable("\\sw_Manhole");

geoshape.Items = new List&amp;lt;ImpexItem&amp;gt;();
geoshape.LayerName = child;
bool checkFields = false;
int fieldCount = table.FieldInformation.Count;

foreach (Row row in table.Search("*", "", RowInstance.Recycle)) // reading coordinates
{
&amp;nbsp;&amp;nbsp;&amp;nbsp; ImpexItem layerItem = new ImpexItem();
&amp;nbsp;&amp;nbsp;&amp;nbsp; layerItem.PartList = new List&amp;lt;ImpexPart&amp;gt;();
&amp;nbsp;&amp;nbsp;&amp;nbsp; ImpexPart itemParts = new ImpexPart();
&amp;nbsp;&amp;nbsp;&amp;nbsp; itemParts.Coordinates = new List&amp;lt;PointD&amp;gt;();

&amp;nbsp;&amp;nbsp;&amp;nbsp; if (row.GetGeometry().shapeType.ToString() == "Point")
&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PointShapeBuffer geometry = row.GetGeometry();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Esri.FileGDB.Point point = geometry.point;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PointD itemPoints = new PointD();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; itemPoints.X = point.x;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; itemPoints.Y = point.y;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; itemParts.Coordinates.Add(itemPoints);
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; else
&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; try
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MultiPointShapeBuffer geometry = row.GetGeometry(); // if geometry type is polygon/polyline
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Esri.FileGDB.Point[] point = geometry.Points;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (int numpoints = 0; numpoints &amp;lt; point.Length; numpoints++)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PointD itemPoints = new PointD();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; itemPoints.X = point[numpoints].x;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; itemPoints.Y = point[numpoints].y;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; itemParts.Coordinates.Add(itemPoints);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; catch (Exception e)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Console.WriteLine("MultiPoint Exception" + e.Message);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; layerItem.PartList.Add(itemParts);

&amp;nbsp;&amp;nbsp;&amp;nbsp; geoshape.Items.Add(layerItem); // one layer data
}&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for loop will run 300 times and its taking more then 4 minutes for reading this simple data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Vince Angelo (Formatted for legibility)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:54:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/file-geodatabase-api-questions/fgdb-api-is-too-slow/m-p/263407#M435</guid>
      <dc:creator>MuneemHabiba</dc:creator>
      <dc:date>2021-12-11T12:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: FGDB API is too slow</title>
      <link>https://community.esri.com/t5/file-geodatabase-api-questions/fgdb-api-is-too-slow/m-p/263408#M436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You've left a great deal out of this post, making it almost impossible to assist:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;On which operating system is the application deployed?&lt;/LI&gt;&lt;LI&gt;Is the source FGDB on a local or network disk?&lt;UL&gt;&lt;LI&gt;If local, what kind or disk, and what mean seek time?&lt;/LI&gt;&lt;LI&gt;if networked, what networking protocol, and at what bandwidth?&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;How many total feature classes?&lt;/LI&gt;&lt;LI&gt;How many average features per feature class (rows per table)?&lt;/LI&gt;&lt;LI&gt;How many average vertices per feature?&lt;/LI&gt;&lt;LI&gt;What is the mean read time per feature?&lt;/LI&gt;&lt;LI&gt;What is the total size on disk of the geodatabase?&lt;/LI&gt;&lt;LI&gt;How do you define "too much time" (what is your requirement)?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the future, please format code using the "Use advanced editor" option, selecting the code block, and choosing the "&amp;gt;&amp;gt;" icon to specify formatting with "Syntax Highlighting"&amp;nbsp; or "C#" (or whatever is appropriate).&amp;nbsp; It would also help to explicitly state you are using the 1.4 API with C# language and whatever IDE you are using.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- V&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 20:00:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/file-geodatabase-api-questions/fgdb-api-is-too-slow/m-p/263408#M436</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2015-11-04T20:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: FGDB API is too slow</title>
      <link>https://community.esri.com/t5/file-geodatabase-api-questions/fgdb-api-is-too-slow/m-p/263409#M437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;UL&gt;&lt;LI&gt;Windows 7 Operating system&lt;/LI&gt;&lt;LI&gt;Is the source FGDB on a local or network disk ? (Local)&lt;UL style="padding: 0 0 0 30px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;LI style="margin-top: 0.5ex; margin-bottom: 0.5ex; font-weight: inherit; font-style: inherit; font-family: inherit; list-style-type: inherit;"&gt;If local, what kind or disk, and what mean seek time?&lt;/LI&gt;&lt;LI&gt;if networked, what networking protocol, and at what bandwidth?&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;How many total feature classes?&amp;nbsp; (Right now i am testing only one)&lt;/LI&gt;&lt;LI&gt;How many average features per feature class (rows per table)? (310 rows per table)&lt;/LI&gt;&lt;LI&gt;How many average vertices per feature?&amp;nbsp; (2)&lt;/LI&gt;&lt;LI&gt;What is the mean read time per feature? (time varies but on average its almost 30 sec)&lt;/LI&gt;&lt;LI&gt;What is the total size on disk of the geodatabase? (gdb attached)&lt;/LI&gt;&lt;LI&gt;How do you define "too much time" (what is your requirement)? it should be less than 2minute to read full gdb file as i have tested in postGIS and it is taking much less time&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2015 05:22:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/file-geodatabase-api-questions/fgdb-api-is-too-slow/m-p/263409#M437</guid>
      <dc:creator>MuneemHabiba</dc:creator>
      <dc:date>2015-11-05T05:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: FGDB API is too slow</title>
      <link>https://community.esri.com/t5/file-geodatabase-api-questions/fgdb-api-is-too-slow/m-p/263410#M438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using a C++ app I had already created, I fetched every row of &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;"\\sw_Manhole", and it took 7.3 &lt;STRONG&gt;MILLISECONDS&lt;/STRONG&gt; to read 302 rows with 33 fields (OpenTable took 3.2ms, so the actual average read duration was 12.4 &lt;STRONG&gt;microseconds&lt;/STRONG&gt; per feature).&amp;nbsp; Each shape had one vertex (they're points, after all).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;./fgdbtimer2 ../WS_Data.gdb "\sw_Manhole" SHAPE
Field 1: OBJECTID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OID
Field 2: ASSET_ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NSTRING
Field 3: INSTALL_DATE&amp;nbsp; DATE
Field 4: RIM_ELEVATION&amp;nbsp; FLOAT64
Field 5: DEPTH&amp;nbsp; FLOAT64
Field 6: DIAMETER&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FLOAT64
Field 7: COVER_TYPE&amp;nbsp;&amp;nbsp;&amp;nbsp; NSTRING
Field 8: VENT_TYPE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NSTRING
Field 9: DROP_STRUCTURE INT16
Field 10: CONTRACTNUM&amp;nbsp; NSTRING
Field 11: ASSET_STATUS&amp;nbsp; NSTRING
Field 12: OWNERSHIP&amp;nbsp;&amp;nbsp;&amp;nbsp; NSTRING
Field 13: MANAGEDBY&amp;nbsp;&amp;nbsp;&amp;nbsp; NSTRING
Field 14: UPDATETXID&amp;nbsp;&amp;nbsp;&amp;nbsp; INT32
Field 15: LASTEDIT&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATE
Field 16: WS_STREET&amp;nbsp;&amp;nbsp;&amp;nbsp; NSTRING
Field 17: WS_CROSS_STREET&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NSTRING
Field 18: WS_MANUFACTURER&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NSTRING
Field 19: WS_PROJECT_NAME&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NSTRING
Field 20: WS_PROJECT_PHASE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NSTRING
Field 21: WS_ASSUMPTION_AREA&amp;nbsp;&amp;nbsp;&amp;nbsp; NSTRING
Field 22: WS_GPN&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NSTRING
Field 23: WS_DEVELOPER&amp;nbsp; NSTRING
Field 24: WS_CONSULTANT NSTRING
Field 25: WS_FEATURE_CREATE&amp;nbsp;&amp;nbsp;&amp;nbsp; DATE
Field 26: WS_FEATURE_EDIT&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATE
Field 27: WS_LAST_EDITOR&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NSTRING
Field 28: RJB_FLOW_TYPE INT16
Field 29: created_user&amp;nbsp; NSTRING
Field 30: created_date&amp;nbsp; DATE
Field 31: last_edited_user&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NSTRING
Field 32: last_edited_date&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATE
Field 33: Shape SHAPE
&amp;nbsp; mode: SHAPE
&amp;nbsp; reads: 303
&amp;nbsp;&amp;nbsp;&amp;nbsp; v/f: 1
ms_desc: 0.153
ms_open: 3.27
&amp;nbsp; ColA: 3.423
ms_read: 3.769
ms_get: 0.122
&amp;nbsp; total: 7.314&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your application is sub-optimal for performance evaluation because of multiple GetGeometry invocations, but there's nothing obvious as to why my app should run nearly 33 thousand times faster.&amp;nbsp; I recommend you:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Instrument your code with a millisecond resolution timer&lt;/LI&gt;&lt;LI&gt;Clean up the coding to be as efficient as possible&lt;/LI&gt;&lt;LI&gt;Re-run your evaluation&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;You can then report back on the timing for each function call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- V&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: MultiPointShapeBuffer is for multipoint shapes -- Lines and Polygons use Multi&lt;STRONG&gt;​Part&lt;/STRONG&gt;​ShapeBuffer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:54:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/file-geodatabase-api-questions/fgdb-api-is-too-slow/m-p/263410#M438</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2021-12-11T12:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: FGDB API is too slow</title>
      <link>https://community.esri.com/t5/file-geodatabase-api-questions/fgdb-api-is-too-slow/m-p/263411#M439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe the problem is in&lt;/P&gt;&lt;OL class="dp-c" start="1"&gt;&lt;LI&gt;&lt;SPAN class="keyword"&gt;try&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;&lt;SPAN class="keyword"&gt;catch (Exception e)&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } &lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;this feature works slow enough when you catch exceptions.&lt;/P&gt;&lt;P&gt;I tried same code - it works well. Check console output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2015 08:44:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/file-geodatabase-api-questions/fgdb-api-is-too-slow/m-p/263411#M439</guid>
      <dc:creator>PavelShkurko</dc:creator>
      <dc:date>2015-11-26T08:44:29Z</dc:date>
    </item>
  </channel>
</rss>

