tagged [storage]

Repository size limits for GitHub.com

Repository size limits for GitHub.com Lately I have been using GitHub and I am wondering what is the repository size limit for files hosted on github.com?

3 Aug at 18:28

PHP & localStorage;

PHP & localStorage; I've searched around for use of localStorage in PHP, as I need to get localStorage data as a $var, in PHP and do stuff in PHP with it. Is this possible?

30 May at 09:23

Azure downloadtostreamasync method hangs

Azure downloadtostreamasync method hangs here is the offending code ``` public async static Task AsyncReadBlob(string identifier) { CloudStorageAccount storageAccount = CloudStorageAccount.Parse...

Azure Storage container size

Azure Storage container size How can I get a size of container in Azure Storage? I access Azure storage via C# API:

13 Jan at 08:47

How to get all rows in Azure table Storage in C#?

How to get all rows in Azure table Storage in C#? I am trying to get a list of all entities inside an azure table. Any idea of how I would write this query?

When do items in HTML5 local storage expire?

When do items in HTML5 local storage expire? For how long is data stored in `localStorage` (as part of DOM Storage in HTML5) available? Can I set an expiration time for the data which I put into local...

1 Jul at 15:41

How to get the list of removable disk in c#?

How to get the list of removable disk in c#? I want to get the list of removable disk in c#. I want to skip the local drives. Because i want the user to save the file only in removable disk.

18 Jun at 21:49

When is localStorage cleared?

When is localStorage cleared? How long can I expect data to be kept in localStorage. How long will an average user's localStorage data persist? If the user doesn't clear it, will it last till a browse...

23 Dec at 19:44

Azure Storage Blob Rename

Azure Storage Blob Rename Is is possible to rename an Azure Storage Blob using the Azure Storage API from a Web Role? The only solution I have at the moment is to copy the blob to a new blob with the ...

14 Jul at 16:52

How to integrate NLog to write log to Azure Streaming log

How to integrate NLog to write log to Azure Streaming log Currently I am using NLog to write my application errors to a text file. How can I configure NLog to write the error messages to Azure Streami...

13 Feb at 14:4

Vue.JS - how to use localStorage with Vue.JS

Vue.JS - how to use localStorage with Vue.JS I am working on Markdown editor with Vue.JS, and I tried to use localStorage with it to save data but I don't know how to save new value to data variables ...

9 Jan at 08:2

Azure Storage Table Paging

Azure Storage Table Paging To implement paging in Azure Storage in relatively straight forward: [Paging with Windows Azure Table Storage](http://scottdensmore.typepad.com/blog/2010/04/paging-with-wind...

Unexpected response code from CloudTable.ExecuteBatch(..)

Unexpected response code from CloudTable.ExecuteBatch(..) When trying to do a batch insert to Azure Table Storage, I am getting a `StorageException` on `CloudTable.ExecuteBatch()`: > Microsoft.Windows...

Is it safe to store a JWT in localStorage with ReactJS?

Is it safe to store a JWT in localStorage with ReactJS? I'm currently building a single page application using ReactJS. I read that one of the reasons for not using `localStorage` is because of XSS vu...

Uploading blockblob and setting contenttype

Uploading blockblob and setting contenttype I'm using `Microsoft.WindowsAzure.Storage.*` library from C#. This is how I'm uploading things to storage: ``` // Store in storage CloudStorageAccount stora...

Storing Images in DB - Yea or Nay?

Storing Images in DB - Yea or Nay? So I'm using an app that stores images heavily in the DB. What's your outlook on this? I'm more of a type to store the location in the filesystem, than store it dire...

28 Nov at 05:41

html5 localStorage error with Safari: "QUOTA_EXCEEDED_ERR: DOM Exception 22: An attempt was made to add something to storage that exceeded the quota."

html5 localStorage error with Safari: "QUOTA_EXCEEDED_ERR: DOM Exception 22: An attempt was made to add something to storage that exceeded the quota." My webapp have javascript errors in ios safari pr...

17 Dec at 21:3

Azure Functions: configure blob trigger only for new events

Azure Functions: configure blob trigger only for new events I have about 800k blobs in my azure storage. When I create azure function with a blobTrigger it starts to process all blobs that I have in t...

Count rows within partition in Azure table storage

Count rows within partition in Azure table storage I've seen various questions around SO about how to get the row count of an Azure storage table, but I want to know how to get the number of rows with...

Storing a file in a database as opposed to the file system?

Storing a file in a database as opposed to the file system? Generally, how bad of a performance hit is storing a file in a database (specifically mssql) as opposed to the file system? I can't come up ...

What is the max size of localStorage values?

What is the max size of localStorage values? Since `localStorage` (currently) only supports strings as values, and in order to do that the objects need to be stringified (stored as JSON-string) before...

16 Jul at 02:13

Passing object messages in Azure Queue Storage

Passing object messages in Azure Queue Storage I'm trying to find a way to pass objects to the Azure Queue. I couldn't find a way to do this. As I've seen I can pass string or byte array, which is not...

17 Apr at 02:39

Azure table storage: maximum variable size?

Azure table storage: maximum variable size? I will be using the table storage to store a lot of blob names, in a single string, appended to each other using some special character. This string will sk...

28 Feb at 12:48

Azure Storage move blob to other container

Azure Storage move blob to other container I'm looking for an approach to move a blob in Azure from one container to another. The only solution I found is to use the Azure Storage Data Movement Librar...

27 Mar at 22:20

What does "unexpected response code for operation : 1" mean?

What does "unexpected response code for operation : 1" mean? Am getting "unexpected response code for operation : 1" from an app trying to insert records in an Azure table storage. Am basically placin...

13 Aug at 06:53