.NET
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
XData vs XRecord in xrefs
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi
I have created some files that have a long string as XData on every entity in the model. When I add the file as an xref it takes forever to get the file in as an xref when there is some size to the model.
Would it be faster to use XRecord, or is there a better way that can speed the loading of these xrefs?
Solved! Go to Solution.
Re: XData vs XRecord in xrefs
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
How long are the strings?
Generally speaking, you wont see much of an improvement in performance between XData and XRecords unless you are storing more than say 16K of data (the limit of xdata). An Xrecord data limit is 250 mb
Fenton Webb
Developer Technical Services
Autodesk Developer Network
Re: XData vs XRecord in xrefs
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
If the performance issues you are seeing are actually caused by the xdata (and I'm not sure that's the case), whether you can make improvements would depend on what exactly the xdata represents. For example, are there many entities that can contain identical values in their xdata (implying a 'one-to-many' relationship) ? If so, then one way might be to store the duplicated string in one location (in the Named Objects Dictionary or a dictionary attached to the BlockTableRecord that contains the entities), and reference it using an ObjectId that can be stored in an XRecord attached to the referencing entities (ObjectId references are correctly translated by AutoCAD in the deep clone process, but there's no such translation for handle references in stored in Xdata).
