Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/azure/12.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java Azure表存储etag_Java_Azure_Azure Table Storage - Fatal编程技术网

Java Azure表存储etag

Java Azure表存储etag,java,azure,azure-table-storage,Java,Azure,Azure Table Storage,我正在使用Azure Storage SDK for Java。 它的工作原理如下: CloudTable cloudTable = tableClient.getTableReference() TableOperation retrieve = TableOperation.retrieve(partitionKey, rowKey, type); cloudTable.execute(retrieve).getResultAsType() 从表中检索记录时

我正在使用Azure Storage SDK for Java。 它的工作原理如下:

CloudTable cloudTable = tableClient.getTableReference()
TableOperation retrieve =
                TableOperation.retrieve(partitionKey, rowKey, type);
cloudTable.execute(retrieve).getResultAsType()
从表中检索记录时,是否有任何方法将en ETag作为“If None Match:myETag”传递?这样我想得到HTTP 304。它会使这件事更快吗

是否有任何方法可以在以下情况下将en ETag作为“If None Match:myETag”传递 从表中检索记录

否。此时,使用
Etag
管理乐观并发性仅适用于
Update
操作(包括and)&操作

是否有任何方法可以在以下情况下将en ETag作为“If None Match:myETag”传递 从表中检索记录


不可以。目前,使用
Etag
管理乐观并发性仅适用于
Update
操作(包括and)&operation。

表示有一些额外的blob头。有没有办法将其与Azure Storage java sdk一起使用?这些是用于blob服务而不是表的。对于blob,可以将此标头用于GET操作,但不能用于表。嗯。表示有一些用于blob的附加标题。有没有办法将其与Azure Storage java sdk一起使用?这些是用于blob服务而不是表的。对于blob,可以将此标头用于GET操作,但不能用于表。嗯。