-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #322 from Pitsko/master
Small performance optimizations
- Loading branch information
Showing
6 changed files
with
62 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
...ng/RFWebServiceCachingModel.xcdatamodeld/RFWebServiceCachingModel_v3.xcdatamodel/contents
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<model userDefinedModelVersionIdentifier="v1.1.2" type="com.apple.IDECoreDataModeler.DataModel" documentVersion="1.0" lastSavedToolsVersion="5064" systemVersion="13D65" minimumToolsVersion="Xcode 4.3" macOSVersion="Automatic" iOSVersion="Automatic"> | ||
<entity name="WebResponse" representedClassName="RFWebResponse" syncable="YES"> | ||
<attribute name="cacheIdentifier" optional="YES" attributeType="String" syncable="YES"/> | ||
<attribute name="eTag" optional="YES" attributeType="String" syncable="YES"/> | ||
<attribute name="expirationDate" optional="YES" attributeType="Date" syncable="YES"/> | ||
<attribute name="lastModified" optional="YES" attributeType="String" syncable="YES"/> | ||
<attribute name="requestBodyData" optional="YES" attributeType="Binary" syncable="YES"/> | ||
<attribute name="requestURL" attributeType="String" indexed="YES" syncable="YES"/> | ||
<attribute name="response" attributeType="Binary" syncable="YES"/> | ||
<attribute name="responseBodyData" optional="YES" attributeType="Binary" syncable="YES"/> | ||
<attribute name="urlHash" attributeType="Decimal" defaultValueString="0.0" indexed="YES" syncable="YES"/> | ||
</entity> | ||
<elements> | ||
<element name="WebResponse" positionX="0" positionY="0" width="128" height="178"/> | ||
</elements> | ||
</model> |
17 changes: 17 additions & 0 deletions
17
...eCachingModel.xcdatamodeld/RFWebServiceCachingModel_v3_optimizations.xcdatamodel/contents
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<model userDefinedModelVersionIdentifier="v1.1.2" type="com.apple.IDECoreDataModeler.DataModel" documentVersion="1.0" lastSavedToolsVersion="3401" systemVersion="13B42" minimumToolsVersion="Xcode 4.3" macOSVersion="Automatic" iOSVersion="Automatic"> | ||
<entity name="WebResponse" representedClassName="RFWebResponse" syncable="YES"> | ||
<attribute name="cacheIdentifier" optional="YES" attributeType="String" syncable="YES"/> | ||
<attribute name="eTag" optional="YES" attributeType="String" syncable="YES"/> | ||
<attribute name="expirationDate" optional="YES" attributeType="Date" syncable="YES"/> | ||
<attribute name="lastModified" optional="YES" attributeType="String" syncable="YES"/> | ||
<attribute name="requestBodyData" optional="YES" attributeType="Binary" syncable="YES"/> | ||
<attribute name="requestURL" optional="YES" attributeType="String" syncable="YES"/> | ||
<attribute name="response" optional="YES" attributeType="Binary" syncable="YES"/> | ||
<attribute name="responseBodyData" optional="YES" attributeType="Binary" syncable="YES"/> | ||
<attribute name="urlHash" optional="YES" attributeType="Decimal" defaultValueString="0.0" syncable="YES"/> | ||
</entity> | ||
<elements> | ||
<element name="WebResponse" positionX="0" positionY="0" width="0" height="0"/> | ||
</elements> | ||
</model> |