Skip to content

Commit

Permalink
Update PNG/SVG images links to polars-static repo; closes #1370
Browse files Browse the repository at this point in the history
  • Loading branch information
ghuls authored and ritchie46 committed Sep 27, 2021
1 parent 57ad36e commit b9f1dbd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ There is still a maintained `arrow-rs` branch for users who want to use another
## Acknowledgements
Development of Polars is proudly powered by

[![Xomnia](https://raw.githubusercontent.com/ritchie46/img/master/polars/xomnia_logo.png)](https://www.xomnia.com/)
[![Xomnia](https://raw.githubusercontent.com/pola-rs/polars-static/master/sponsors/xomnia.png)](https://www.xomnia.com/)

## Sponsors
* [Xomnia](https://www.xomnia.com/)
Expand Down
4 changes: 2 additions & 2 deletions polars/src/docs/performance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
//! * an offset array indicating the start (and end) of each string `[0, 2, 5, 8]`
//! * a null bitmap, indicating null values
//!
//! ![](https://raw.githubusercontent.com/ritchie46/img/master/polars/arrow/arrow_string.svg)
//! ![](https://raw.githubusercontent.com/pola-rs/polars-static/master/docs/arrow-string.svg)
//!
//! This memory structure is very cache efficient if we are to read the string values. Especially if
//! we compare it to a `Vec<String>`.
//!
//! ![](https://raw.githubusercontent.com/ritchie46/img/master/polars/arrow/pandas_string.svg)
//! ![](https://raw.githubusercontent.com/pola-rs/polars-static/master/docs/pandas-string.svg)
//!
//! However, if we need to reorder the Arrow UTF8 array, we need to swap around all the bytes of the
//! string values, which can become very expensive when we're dealing with large strings. On the
Expand Down

0 comments on commit b9f1dbd

Please sign in to comment.