aws --endpoint http://localhost:9324 sqs create-queue --queue-name queue-name.fifo --attributes FifoQueue=true,MessageRetentionPeriod=1209600,ContentBasedDeduplication=false- MessageRetentionPeriod is set to 1209600 seconds which equals to 14 days
| <?php | |
| /* | |
| * This example illustrates modelling the following use cases: | |
| * | |
| * - A user can write and publish an article, with the title, description.etc. | |
| * - X users can then respond to said article by posting comments, | |
| * - and responding to one another. | |
| * - it is very common for an Article to be 'locked' when it becomes older. | |
| * | |
| * Note: The example is an incomplete draft. |
| <?php | |
| function it($m,$p){echo ($p?'✔︎':'✘')." It $m\n"; if(!$p){$GLOBALS['f']=1;}}function done(){if(@$GLOBALS['f'])die(1);} |
| sf2-ddd | |
| ├── app | |
| ├── bin | |
| ├── build | |
| ├── lib | |
| ├── src | |
| │ └── __VendorPrefix | |
| │ ├── Application | |
| │ │ └── __DomainNameBundle | |
| │ │ ├── Command |