Git Product home page Git Product logo

immutable_string's Introduction

immutable_string - Immutable Shared Strings for Rust

This crate provides a global table for immutable string implemented using Arc. It avoids duplication of strings in memory when parsing large files with multiple instances of the same sequence of characters.

A global shared WeakHashSet keeps a reference for every live ImmutableString. A ImmutableString can have multiple owners. Once every owner drops a ImmutableString, it is lazily removed from the WeakHashSet and dealocated.

The globally shared WeakHashSet is protected by a RwLock which allows multiple concurrent readers but guarantees that any writer has exclusive access. When instantiating an ImmutableString, the constructor first acquires a reader to check whether the value is already present in the map. If not, it forgoes the reader lock and attempt to acquire the exclusive writer lock. Once it has exclusive writer access, it checks again if the string is not present in the map. Then, it allocates the string and store a weak copy in the hashmap.

The globally shared WeakHashSet may present a performance bottleneck and in the future should be replaced by a distribuited hashmap.

Changelog

  • 0.1.0
    • Initial Release
  • 0.1.1
    • Include implementation for Display and Debug trait

immutable_string's People

Contributors

marlls1989 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.