You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
currently, we use arrow::internal::URI to parse and check the uri string, but it is part of the Apache Arrow C++ library's internal API, which is not intended for direct use by end-users. The internal API is subject to change without notice, and its use is not recommended for production code.
We should find a third-party URI parse library to replace the arrow::internal::URI.
Describe the solution you'd like Since GraphAr has already rely on Boost library. To avoid include other dependency, it's better to use Boost::URL.
Boost::URL in not available in boost library before 2023, considering use a light-weight single header parser like simple-uri-parser
The text was updated successfully, but these errors were encountered:
acezen
changed the title
feat(c++): Replace the arrow::internal::URI with Boost::URL
feat(c++): Find a better uri parser for GraphAr, remove the rely on arrow::internal::URI
Apr 23, 2024
Is your feature request related to a problem? Please describe.
currently, we use
arrow::internal::URI
to parse and check the uri string, but it is part of the Apache Arrow C++ library's internal API, which is not intended for direct use by end-users. The internal API is subject to change without notice, and its use is not recommended for production code.We should find a third-party URI parse library to replace the
arrow::internal::URI
.Describe the solution you'd like
Since GraphAr has already rely on Boost library. To avoid include other dependency, it's better to useBoost::URL
.Boost::URL in not available in boost library before 2023, considering use a light-weight single header parser like simple-uri-parser
The text was updated successfully, but these errors were encountered: