• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Large "Data" support
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Large "Data" support


  • Subject: Re: Large "Data" support
  • From: Jens Alfke <email@hidden>
  • Date: Mon, 05 Dec 2016 17:15:44 -0800

> On Dec 5, 2016, at 4:12 PM, Daryle Walker <email@hidden> wrote:
>
> For the Swift 3 "Data" type, if I want to represent a multi-gigabyte file, it won't try to do it all in memory, would it?

The Data type specifically represents in-memory data, so yeah, it would. (Where by “memory” I mean “address space”, which is not at all the same thing as physical RAM on macOS, though it is on iOS. You haven’t specified which platform you’re interested in.)

> Or would I have to manage a memory-mapped NSData and somehow connect it to a Data object?

On Mac this would be of limited use; all it changes is that when your data gets paged out it will be written to your custom file instead of the OS’s usual swap file. It probably won’t improve performance although it would help keep the swap file from growing as much.

On iOS, however, this is the way to go if you need large amounts of address space. Although I’ve heard that for some reason iOS artificially limits the amount of space you can memory-map. I don’t remember what the limit is, but it’s on the order of 400MB or so; anyone know for sure? (I think there are old threads here about it.)

—Jens
_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden


  • Follow-Ups:
    • Re: Large "Data" support
      • From: Alastair Houghton <email@hidden>
References: 
 >Large "Data" support (From: Daryle Walker <email@hidden>)

  • Prev by Date: Representing an object graph
  • Next by Date: Re: Representing an object graph
  • Previous by thread: Large "Data" support
  • Next by thread: Re: Large "Data" support
  • Index(es):
    • Date
    • Thread