Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Intern strings by default instead of using WeakRefString #204

Merged
merged 3 commits into from
May 12, 2018
Merged

Commits on May 10, 2018

  1. Intern strings by default instead of using WeakRefString

    WeakRefStrings are dangerous in interaction with use_mmap=true since crashes can happen
    if the file is modified during the lifetime of the resulting DataFrame. String interning
    can also be more efficient when the proportion of unique strings is small. Finally,
    returning plain Vector{String} columns is more user-friendly.
    nalimilan committed May 10, 2018
    Configuration menu
    Copy the full SHA
    0dbe1d8 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2018

  1. Julia 0.7 fixes

    nalimilan committed May 11, 2018
    Configuration menu
    Copy the full SHA
    b3dbf47 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2018

  1. Configuration menu
    Copy the full SHA
    bf9b4ba View commit details
    Browse the repository at this point in the history