리덕트 스토리지 0.7.0 출시
3915 단어 databasenewsreductstoragecpp
이 릴리스에서는 시간 간격을 통해 레코드를 반복할 수 있는 데이터 쿼리를 도입했습니다. 이 접근 방식은 레코드의 타임스탬프를 목록으로 읽은 다음 레코드를 읽는 것보다 훨씬 낫습니다. 목록은 엄청날 수 있습니다. 이제 시간 간격 동안 데이터를 쿼리하고 해당 ID를 사용하여 레코드를 읽을 수 있습니다.
CURL 및 당사demo server를 사용하여 시도해 볼 수 있습니다.
export API_TOKEN=reduct
# Take a temporal access token by using API token
curl -X POST --header "Authorization: Bearer ${API_TOKEN}" -a https://play.reduct-storage.dev/auth/refresh
export ACCESS_TOKEN=<copy it from json>
# Create a bucket (if doesnt exist)
curl -d "{\"quota_type\":\"FIFO\", \"quota_size\":10000}" \
-X POST \
--header "Authorization: Bearer ${ACCESS_TOKEN}" \
-a https://play.reduct-storage.dev/b/my_data
# Write some data
curl -d "some_data_1" \
-X POST \
--header "Authorization: Bearer ${ACCESS_TOKEN}" \
-a https://play.reduct-storage.dev/b/my_data/entry_1?ts=10000
curl -d "some_data_2" \
-X POST \
--header "Authorization: Bearer ${ACCESS_TOKEN}" \
-a https://play.reduct-storage.dev/b/my_data/entry_1?ts=20000
# Query data
curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \
https://play.reduct-storage.dev/b/my_data/entry_1/q?ttl=30
# Read data by using the query ID
curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \
https://play.reduct-storage.dev/b/my_data/entry_1?q=<ID>
자세한 내용은 API Documentation을 참조하십시오.
Reference
이 문제에 관하여(리덕트 스토리지 0.7.0 출시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/reduct-storage/reduct-storage-070-was-released-1ea0텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)