forked from codekoala/django-queued-storage
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME
42 lines (33 loc) · 1.45 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
django-queued-storage
=================
This is a storage backend that allows you specify a local and a remote storage backend.
It will upload locally and then queue up the transfer to your remote backend. If any
request for the file occur before the file gets to the remote backend your local backend
will be used. Once the file has been successfully transferred to the remote backend all
request for the file will use the remote backend.
This backend requires celery, which is used for the queuing.
Example
----------------------------
>>>from queued_storage.backend import QueuedRemoteStorage
>>>storage = QueuedRemoteStorage(local='django.core.files.storage.FileSystemStorage', remote='backends.s3boto.S3BotoStorage')
>>>storage.save(fname, file)
>>>storage.url(fname)
<<<u'/uploads/myfile.jpg'
>>>storage.using_local(fname)
<<<True
>>>storage.using_remote(fname)
<<<False
>>>time.sleep(30)
>>>storage.url(fname)
<<<u'http://mybucket.s3.amazonaws.com/uploads/myfile.jpg'
>>>storage.using_local(fname)
<<<False
>>>storage.using_remote(fname)
<<<True
Installation
----------------------------
1. Make sure celery is installed and running http://ask.github.com/celery/introduction.html
2. Make sure you have a cache backend set up.
3. Add the backend to the storage argument of a FileField
image = ImageField(storage=QueuedRemoteStorage(local='django.core.files.storage.FileSystemStorage',
remote='backends.s3boto.S3BotoStorage'), upload_to='uploads')