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

Optimized memory usage while building url path #3

Merged
merged 2 commits into from
Jan 22, 2018
Merged

Optimized memory usage while building url path #3

merged 2 commits into from
Jan 22, 2018

Conversation

AlexNav73
Copy link

  • Used format! macro, because it uses String::with_capacity to create destination string.
  • format! macro allow to call Display trait implementation on Cow and if it contains borrowed value, it doesn't allocate new string.

src/gitter.rs Outdated
@@ -47,7 +47,7 @@ impl<'a> Gitter<'a> {

/// Returns the current user
pub fn get_user(&self) -> ApiResult<User> {
let full_url = self.api_base_url.to_string() + "user";
let full_url = format!("{}user", self.api_base_url);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I am not mistaken "URL//user" equals to "URL/user". So it is more readable to use format!("{}/user"). Also it will protect you from incorrect api_base_url if it does not contain trailing '/'.

@shmutalov shmutalov changed the base branch from master to develop January 22, 2018 10:53
@shmutalov
Copy link
Owner

Thank you for your PR. Will merge it to develop branch then check it at home

@shmutalov shmutalov closed this Jan 22, 2018
@shmutalov shmutalov reopened this Jan 22, 2018
@shmutalov shmutalov merged commit 39b919b into shmutalov:develop Jan 22, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants