<!--
RSS generated by JIRA (5.2.4#845-sha1:c9f4cc41abe72fb236945343a1f485c2c844dac9) at Wed May 22 10:28:31 CDT 2013

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary add field=key&field=summary to the URL of your request.
For example:
http://www.couchbase.com/issues/sr/jira.issueviews:searchrequest-xml/temp/SearchRequest.xml?jqlQuery=project+%3D+PCBC+AND+fixVersion+%3D+%221.1.3%22&tempMax=1000&field=key&field=summary
-->
<!-- If you wish to do custom client-side styling of RSS, uncomment this:
<?xml-stylesheet href="http://www.couchbase.com/issues/styles/jiraxml2html.xsl" type="text/xsl"?>
-->
<rss version="0.92">
    <channel>
        <title>Couchbase</title>
        <link>http://www.couchbase.com/issues/secure/IssueNavigator.jspa?reset=true&amp;jqlQuery=project+%3D+PCBC+AND+fixVersion+%3D+%221.1.3%22</link>
        <description>An XML representation of a search request</description>
                <language>en-us</language>
                        <issue start="0" end="20" total="20"/>
                <build-info>
            <version>5.2.4</version>
            <build-number>845</build-number>
            <build-date>26-12-2012</build-date>
        </build-info>
<item>
            <title>[PCBC-212] make persistent connections on by default</title>
                <link>http://www.couchbase.com/issues/browse/PCBC-212</link>
                <project id="10049" key="PCBC">Couchbase PHP client library</project>
                        <description>I think it&amp;#39;s time to make the switch.&lt;br/&gt;
&lt;br/&gt;
See:&lt;br/&gt;
&lt;a href=&quot;http://stackoverflow.com/questions/15451560/couchbase-php-sdk-slow-establishing-connection-to/15455411?noredirect=1#comment21878658_15455411&quot;&gt;http://stackoverflow.com/questions/15451560/couchbase-php-sdk-slow-establishing-connection-to/15455411?noredirect=1#comment21878658_15455411&lt;/a&gt;</description>
                <environment></environment>
            <key id="23246">PCBC-212</key>
            <summary>make persistent connections on by default</summary>
                <type id="4" iconUrl="http://www.couchbase.com/issues/images/icons/issuetypes/improvement.png">Improvement</type>
                                <priority id="3" iconUrl="http://www.couchbase.com/issues/images/icons/priorities/major.png">Major</priority>
                    <status id="5" iconUrl="http://www.couchbase.com/issues/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="3">Duplicate</resolution>
                    <security id="10011">Public</security>
                        <assignee username="trond">Trond Norbye</assignee>
                                <reporter username="ingenthr">Matt Ingenthron</reporter>
                        <labels>
                    </labels>
                <created>Sun, 17 Mar 2013 13:27:43 -0500</created>
                <updated>Sun, 17 Mar 2013 13:40:10 -0500</updated>
                    <resolved>Sun, 17 Mar 2013 13:40:10 -0500</resolved>
                            <version>1.1.2</version>
                                <fixVersion>1.1.3</fixVersion>
                                                <votes>0</votes>
                        <watches>1</watches>
                                                            <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                                                                                                            <customfield id="customfield_10284" key="com.atlassian.jira.plugin.system.customfieldtypes:datepicker">
                <customfieldname>Planned End</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>Mon, 18 Mar 2013 12:00:00 -0500</customfieldvalue>

                </customfieldvalues>
            </customfield>
                                            <customfield id="customfield_10283" key="com.atlassian.jira.plugin.system.customfieldtypes:datepicker">
                <customfieldname>Planned Start</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>Mon, 18 Mar 2013 12:00:00 -0500</customfieldvalue>

                </customfieldvalues>
            </customfield>
                                            <customfield id="customfield_10081" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Rank</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>9480</customfieldvalue>
                </customfieldvalues>
            </customfield>
                                                                                    <customfield id="customfield_10181" key="com.atlassian.jira.ext.charting:timeinstatus">
                <customfieldname>Time In Status</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                </customfields>
    </item>

<item>
            <title>[PCBC-204] Persistent connections should be indexed on server list contents, not their order.</title>
                <link>http://www.couchbase.com/issues/browse/PCBC-204</link>
                <project id="10049" key="PCBC">Couchbase PHP client library</project>
                        <description>In the current state, we simply treat the connection parameter as a string.&lt;br/&gt;
&lt;br/&gt;
An example use case may be of several clients trying to load-balance between various entry points nodes (EPTs). Such a strategy ensures that they aren&amp;#39;t all hitting the same node for configuration requests.&lt;br/&gt;
&lt;br/&gt;
However when attempting to use this in conjunction with persistent connections, we have the consequence that each permutation of the &amp;quot;Server List&amp;quot; is treated as a separate key when using persistent connections; therefore something like:&lt;br/&gt;
&lt;br/&gt;
$base_list = array(&amp;quot;1.1.1.1&amp;quot;, &amp;quot;2.2.2.2&amp;quot;, &amp;quot;3.3.3.3&amp;quot;, &amp;quot;4.4.4.4&amp;quot;);&lt;br/&gt;
&lt;br/&gt;
for ($i = 0; $i &amp;lt; 1000; $i++) {&lt;br/&gt;
&amp;nbsp;$cur_list = $base_list;&lt;br/&gt;
&amp;nbsp;shuffle($cur_list);&lt;br/&gt;
&amp;nbsp;$cb = new Couchbase($cur_list, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;, true);&lt;br/&gt;
&amp;nbsp;$cb-&amp;gt;set(&amp;quot;foo&amp;quot;, &amp;quot;bar&amp;quot;);&lt;br/&gt;
&amp;nbsp;// other operations&lt;br/&gt;
}&lt;br/&gt;
&lt;br/&gt;
In a nutshell, this code has a &amp;quot;base&amp;quot; set of four servers. In the &amp;quot;normal&amp;quot; initialization code, the list is copied and then shuffled around, so that the first server in the list is always something else. Since the first server in the list ends up becoming the EPT (unless the server is down, in which case the next node is used, etc.) this enables some kind of cheap load balancing.&lt;br/&gt;
&lt;br/&gt;
However this also means the order of the array is different, which means the &amp;quot;canonical connection key&amp;quot; is different, which means that when considering whether an existing connection is available, a new one is created. Since we have 4 servers in the list, there is a potential of having 4*4=16 different client objects per process. These objects will never die.&lt;br/&gt;
&lt;br/&gt;
The solution is then to &amp;quot;deconstruct&amp;quot; the connection string in such a way that the server list itself is always alphabetically sorted. The effective list (When actually connecting) will remain the same, but for indexing purposes, it shall be sorted.</description>
                <environment></environment>
            <key id="22677">PCBC-204</key>
            <summary>Persistent connections should be indexed on server list contents, not their order.</summary>
                <type id="1" iconUrl="http://www.couchbase.com/issues/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.couchbase.com/issues/images/icons/priorities/major.png">Major</priority>
                    <status id="5" iconUrl="http://www.couchbase.com/issues/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10011">Public</security>
                        <assignee username="trond">Trond Norbye</assignee>
                                <reporter username="mnunberg">Mark Nunberg</reporter>
                        <labels>
                    </labels>
                <created>Wed, 13 Feb 2013 13:21:35 -0600</created>
                <updated>Thu, 14 Feb 2013 09:44:40 -0600</updated>
                    <resolved>Thu, 14 Feb 2013 09:44:40 -0600</resolved>
                            <version>1.0.4</version>
                <version>1.1.2</version>
                                <fixVersion>1.1.3</fixVersion>
                                <component>library</component>
                                <votes>0</votes>
                        <watches>1</watches>
                                                            <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                                                                                                                                                    <customfield id="customfield_10081" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Rank</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>8811</customfieldvalue>
                </customfieldvalues>
            </customfield>
                                                                                    <customfield id="customfield_10181" key="com.atlassian.jira.ext.charting:timeinstatus">
                <customfieldname>Time In Status</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                </customfields>
    </item>

<item>
            <title>[PCBC-181] The documentation is wrong for get() in couchbase-api.php</title>
                <link>http://www.couchbase.com/issues/browse/PCBC-181</link>
                <project id="10049" key="PCBC">Couchbase PHP client library</project>
                        <description>I just discovered this while fixing a bug in Basement.&lt;br/&gt;
&lt;br/&gt;
The $cas variable callback is not working on get() but works on getMulti().&lt;br/&gt;
&lt;br/&gt;
Simple example:&lt;br/&gt;
&lt;br/&gt;
Works:&lt;br/&gt;
$client-&amp;gt;set(&amp;quot;foo&amp;quot;, &amp;quot;bar&amp;quot;);&lt;br/&gt;
$cas = null;&lt;br/&gt;
var_dump($client-&amp;gt;getMulti(array(&amp;quot;foo&amp;quot;), $cas));&lt;br/&gt;
var_dump($cas);&lt;br/&gt;
&lt;br/&gt;
array(1) {&lt;br/&gt;
&amp;nbsp;&amp;nbsp;[&amp;quot;foo&amp;quot;]=&amp;gt;&lt;br/&gt;
&amp;nbsp;&amp;nbsp;string(3) &amp;quot;bar&amp;quot;&lt;br/&gt;
}&lt;br/&gt;
array(1) {&lt;br/&gt;
&amp;nbsp;&amp;nbsp;[&amp;quot;foo&amp;quot;]=&amp;gt;&lt;br/&gt;
&amp;nbsp;&amp;nbsp;string(20) &amp;quot;11699665754086047744&amp;quot;&lt;br/&gt;
}&lt;br/&gt;
&lt;br/&gt;
Doesn&amp;#39;t work:&lt;br/&gt;
$client-&amp;gt;set(&amp;quot;foo&amp;quot;, &amp;quot;bar&amp;quot;);&lt;br/&gt;
$cas = null;&lt;br/&gt;
var_dump($client-&amp;gt;get(&amp;quot;foo&amp;quot;, $cas));&lt;br/&gt;
var_dump($cas);&lt;br/&gt;
&lt;br/&gt;
string(3) &amp;quot;bar&amp;quot;&lt;br/&gt;
NULL&lt;br/&gt;
&lt;br/&gt;
The doc gets returned properly, but the cas value is not set. Also, when you set $cas to &amp;quot;&amp;quot; or false (not null), then it complains with a dubios error:&lt;br/&gt;
Warning: Couchbase::get() expects parameter 2 to be a valid callback, no array or string given in /Users/michael/Webserver/basement-test/index.php on line 10&lt;br/&gt;
Note that its a warning and not an exception on the OOP interface!&lt;br/&gt;
</description>
                <environment>MacOS X, PHP 5.4</environment>
            <key id="21813">PCBC-181</key>
            <summary>The documentation is wrong for get() in couchbase-api.php</summary>
                <type id="1" iconUrl="http://www.couchbase.com/issues/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.couchbase.com/issues/images/icons/priorities/major.png">Major</priority>
                    <status id="5" iconUrl="http://www.couchbase.com/issues/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10011">Public</security>
                        <assignee username="trond">Trond Norbye</assignee>
                                <reporter username="daschl">Michael Nitschinger</reporter>
                        <labels>
                    </labels>
                <created>Thu, 17 Jan 2013 06:18:12 -0600</created>
                <updated>Fri, 18 Jan 2013 07:31:21 -0600</updated>
                    <resolved>Fri, 18 Jan 2013 07:31:21 -0600</resolved>
                            <version>1.1.2</version>
                                <fixVersion>1.1.3</fixVersion>
                                <component>docs</component>
                                <votes>0</votes>
                        <watches>0</watches>
                                                    <comments>
                    <comment id="47963" author="daschl" created="Thu, 17 Jan 2013 07:46:46 -0600"  >Okay after more investigation of course the notation is:&lt;br/&gt;
&lt;br/&gt;
get(key, callback, cas)&lt;br/&gt;
&lt;br/&gt;
then only the documentation needs to be updated here:&lt;br/&gt;
&lt;br/&gt;
&lt;a href=&quot;https://github.com/couchbase/php-ext-couchbase/blob/master/example/couchbase-api.php#L320&quot;&gt;https://github.com/couchbase/php-ext-couchbase/blob/master/example/couchbase-api.php#L320&lt;/a&gt;</comment>
                    <comment id="48055" author="trond" created="Fri, 18 Jan 2013 06:50:18 -0600"  >&lt;a href=&quot;http://review.couchbase.org/#/c/24053/&quot;&gt;http://review.couchbase.org/#/c/24053/&lt;/a&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                                                                                                                                                    <customfield id="customfield_10081" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Rank</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>9739</customfieldvalue>
                </customfieldvalues>
            </customfield>
                                                                                    <customfield id="customfield_10181" key="com.atlassian.jira.ext.charting:timeinstatus">
                <customfieldname>Time In Status</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                </customfields>
    </item>

<item>
            <title>[PCBC-177] inconsistent parameter setup for createBucket and modifyBucket </title>
                <link>http://www.couchbase.com/issues/browse/PCBC-177</link>
                <project id="10049" key="PCBC">Couchbase PHP client library</project>
                        <description>There is an inconsistency between the ZEND macros and the implementation</description>
                <environment></environment>
            <key id="21563">PCBC-177</key>
            <summary>inconsistent parameter setup for createBucket and modifyBucket </summary>
                <type id="1" iconUrl="http://www.couchbase.com/issues/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.couchbase.com/issues/images/icons/priorities/major.png">Major</priority>
                    <status id="5" iconUrl="http://www.couchbase.com/issues/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10011">Public</security>
                        <assignee username="trond">Trond Norbye</assignee>
                                <reporter username="trond">Trond Norbye</reporter>
                        <labels>
                    </labels>
                <created>Wed, 2 Jan 2013 15:02:22 -0600</created>
                <updated>Thu, 3 Jan 2013 00:52:59 -0600</updated>
                    <resolved>Thu, 3 Jan 2013 00:51:49 -0600</resolved>
                                            <fixVersion>1.1.3</fixVersion>
                                                <votes>0</votes>
                        <watches>0</watches>
                                                    <comments>
                    <comment id="46907" author="trond" created="Wed, 2 Jan 2013 15:11:35 -0600"  >&lt;a href=&quot;http://review.couchbase.org/#/c/23636/2&quot;&gt;http://review.couchbase.org/#/c/23636/2&lt;/a&gt;</comment>
                    <comment id="46952" author="ingenthr" created="Wed, 2 Jan 2013 22:07:19 -0600"  >Can you add some additional detail.  I can understand that there may be a bug in the macros, but the underlying change looks like we&amp;#39;re just changing the API.  I&amp;#39;m still confused by this one.  Sorry to be slow.</comment>
                    <comment id="46953" author="trond" created="Thu, 3 Jan 2013 00:52:59 -0600"  >The macros say we take multiple parameters, but the implementation takes two where the first one is the name, the second is the properties</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                                                                                                                                                    <customfield id="customfield_10081" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Rank</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>9743</customfieldvalue>
                </customfieldvalues>
            </customfield>
                                                                                    <customfield id="customfield_10181" key="com.atlassian.jira.ext.charting:timeinstatus">
                <customfieldname>Time In Status</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                </customfields>
    </item>

<item>
            <title>[PCBC-175] released bundle should contain the example php ini file and the couchbase api file</title>
                <link>http://www.couchbase.com/issues/browse/PCBC-175</link>
                <project id="10049" key="PCBC">Couchbase PHP client library</project>
                        <description></description>
                <environment></environment>
            <key id="21551">PCBC-175</key>
            <summary>released bundle should contain the example php ini file and the couchbase api file</summary>
                <type id="4" iconUrl="http://www.couchbase.com/issues/images/icons/issuetypes/improvement.png">Improvement</type>
                                <priority id="3" iconUrl="http://www.couchbase.com/issues/images/icons/priorities/major.png">Major</priority>
                    <status id="5" iconUrl="http://www.couchbase.com/issues/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10011">Public</security>
                        <assignee username="trond">Trond Norbye</assignee>
                                <reporter username="trond">Trond Norbye</reporter>
                        <labels>
                    </labels>
                <created>Tue, 1 Jan 2013 23:28:28 -0600</created>
                <updated>Thu, 3 Jan 2013 00:57:55 -0600</updated>
                    <resolved>Thu, 3 Jan 2013 00:57:55 -0600</resolved>
                                            <fixVersion>1.1.3</fixVersion>
                                                <votes>0</votes>
                        <watches>0</watches>
                                                    <comments>
                    <comment id="46830" author="trond" created="Tue, 1 Jan 2013 23:41:59 -0600"  >&lt;a href=&quot;http://review.couchbase.org/#/c/23645/1&quot;&gt;http://review.couchbase.org/#/c/23645/1&lt;/a&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                                                                                                                                                    <customfield id="customfield_10081" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Rank</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>9744</customfieldvalue>
                </customfieldvalues>
            </customfield>
                                                                                    <customfield id="customfield_10181" key="com.atlassian.jira.ext.charting:timeinstatus">
                <customfieldname>Time In Status</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                </customfields>
    </item>

<item>
            <title>[PCBC-174] Create a php file with &quot;javadoc-style&quot; comments describing the api</title>
                <link>http://www.couchbase.com/issues/browse/PCBC-174</link>
                <project id="10049" key="PCBC">Couchbase PHP client library</project>
                        <description>This allows users to add it to their IDE and get code completion and help (at least in NetBeans)</description>
                <environment></environment>
            <key id="21547">PCBC-174</key>
            <summary>Create a php file with &quot;javadoc-style&quot; comments describing the api</summary>
                <type id="4" iconUrl="http://www.couchbase.com/issues/images/icons/issuetypes/improvement.png">Improvement</type>
                                <priority id="3" iconUrl="http://www.couchbase.com/issues/images/icons/priorities/major.png">Major</priority>
                    <status id="5" iconUrl="http://www.couchbase.com/issues/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10011">Public</security>
                        <assignee username="trond">Trond Norbye</assignee>
                                <reporter username="trond">Trond Norbye</reporter>
                        <labels>
                    </labels>
                <created>Mon, 31 Dec 2012 05:29:23 -0600</created>
                <updated>Thu, 3 Jan 2013 00:54:37 -0600</updated>
                    <resolved>Thu, 3 Jan 2013 00:54:37 -0600</resolved>
                            <version>1.1.2</version>
                                <fixVersion>1.1.3</fixVersion>
                                <component>library</component>
                                <votes>0</votes>
                        <watches>0</watches>
                                                            <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                                                                                                                                                    <customfield id="customfield_10081" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Rank</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>9745</customfieldvalue>
                </customfieldvalues>
            </customfield>
                                                                                    <customfield id="customfield_10181" key="com.atlassian.jira.ext.charting:timeinstatus">
                <customfieldname>Time In Status</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                </customfields>
    </item>

<item>
            <title>[PCBC-173] The php extension should have an example .ini file describing the tunables</title>
                <link>http://www.couchbase.com/issues/browse/PCBC-173</link>
                <project id="10049" key="PCBC">Couchbase PHP client library</project>
                        <description>It is easier for people to edit a template than writing their own file ;)</description>
                <environment></environment>
            <key id="21546">PCBC-173</key>
            <summary>The php extension should have an example .ini file describing the tunables</summary>
                <type id="4" iconUrl="http://www.couchbase.com/issues/images/icons/issuetypes/improvement.png">Improvement</type>
                                <priority id="3" iconUrl="http://www.couchbase.com/issues/images/icons/priorities/major.png">Major</priority>
                    <status id="5" iconUrl="http://www.couchbase.com/issues/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10011">Public</security>
                        <assignee username="trond">Trond Norbye</assignee>
                                <reporter username="trond">Trond Norbye</reporter>
                        <labels>
                    </labels>
                <created>Mon, 31 Dec 2012 02:11:44 -0600</created>
                <updated>Fri, 18 Jan 2013 06:51:04 -0600</updated>
                    <resolved>Fri, 18 Jan 2013 06:51:04 -0600</resolved>
                            <version>1.1.1</version>
                                <fixVersion>1.1.3</fixVersion>
                                <component>library</component>
                                <votes>0</votes>
                        <watches>0</watches>
                                                    <comments>
                    <comment id="46804" author="trond" created="Mon, 31 Dec 2012 02:12:34 -0600"  >&lt;a href=&quot;http://review.couchbase.org/#/c/23634/&quot;&gt;http://review.couchbase.org/#/c/23634/&lt;/a&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                                                                                                                                                    <customfield id="customfield_10081" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Rank</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>9746</customfieldvalue>
                </customfieldvalues>
            </customfield>
                                                                                    <customfield id="customfield_10181" key="com.atlassian.jira.ext.charting:timeinstatus">
                <customfieldname>Time In Status</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                </customfields>
    </item>

<item>
            <title>[PCBC-161] update tutorial to be based on sample database</title>
                <link>http://www.couchbase.com/issues/browse/PCBC-161</link>
                <project id="10049" key="PCBC">Couchbase PHP client library</project>
                        <description>Update the PHP sample with a simple app that covers three things:&lt;br/&gt;
CRUD (just get/set is fine)&lt;br/&gt;
JSON (PHP has this built in)&lt;br/&gt;
querying views&lt;br/&gt;
&lt;br/&gt;
Optionally, do this with Twitter Bootstrap (as Michael and Sergey are using).  Not required.  It should be a webapp though.&lt;br/&gt;
&lt;br/&gt;
This should pick up after the getting started guide which Karen is updating.</description>
                <environment></environment>
            <key id="21174">PCBC-161</key>
            <summary>update tutorial to be based on sample database</summary>
                <type id="4" iconUrl="http://www.couchbase.com/issues/images/icons/issuetypes/improvement.png">Improvement</type>
                                <priority id="1" iconUrl="http://www.couchbase.com/issues/images/icons/priorities/blocker.png">Blocker</priority>
                    <status id="6" iconUrl="http://www.couchbase.com/issues/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10011">Public</security>
                        <assignee username="ingenthr">Matt Ingenthron</assignee>
                                <reporter username="ingenthr">Matt Ingenthron</reporter>
                        <labels>
                    </labels>
                <created>Thu, 6 Dec 2012 00:04:07 -0600</created>
                <updated>Fri, 10 May 2013 02:44:45 -0500</updated>
                    <resolved>Fri, 10 May 2013 02:44:45 -0500</resolved>
                                            <fixVersion>1.1.3</fixVersion>
                                <component>docs</component>
                                <votes>0</votes>
                        <watches>0</watches>
                                                    <comments>
                    <comment id="48340" author="daschl" created="Tue, 22 Jan 2013 23:53:17 -0600"  >I lost track on this, but is this considered finished with my tutorial?</comment>
                    <comment id="57789" author="trond" created="Fri, 10 May 2013 02:44:45 -0500"  >Closing this issue with now that we have Michaels tutorial. Create a new one if we need more examples</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                                                                                                                                                    <customfield id="customfield_10081" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Rank</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>8498</customfieldvalue>
                </customfieldvalues>
            </customfield>
                                                                                    <customfield id="customfield_10181" key="com.atlassian.jira.ext.charting:timeinstatus">
                <customfieldname>Time In Status</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                </customfields>
    </item>

<item>
            <title>[PCBC-156] PHP GA Content</title>
                <link>http://www.couchbase.com/issues/browse/PCBC-156</link>
                <project id="10049" key="PCBC">Couchbase PHP client library</project>
                        <description>1. Release Notes - prio two.&lt;br/&gt;
- Incidents under PCBC: &lt;a href=&quot;http://www.couchbase.com/issues/secure/ReleaseNote.jspa?projectId=10049&amp;version=10242&quot;&gt;http://www.couchbase.com/issues/secure/ReleaseNote.jspa?projectId=10049&amp;amp;version=10242&lt;/a&gt;&lt;br/&gt;
- Matt will have some more items to add.&lt;br/&gt;
- .net and Java - check out look at front matter, especially java&lt;br/&gt;
&lt;br/&gt;
2. Getting Starting: at develop/php/next  -  top prio.&lt;br/&gt;
&amp;nbsp;-- create content in getting-started.xml&lt;br/&gt;
&amp;nbsp;- grab subset and put into Drupal, renumber&lt;br/&gt;
&amp;nbsp;- Matt to get me Drupal access&lt;br/&gt;
&amp;nbsp;- Get the install from the develop page on PHP from. Matt - will send.&lt;br/&gt;
&amp;nbsp;- Model the content after Ruby 1.2 for install: develop/ruby/next&lt;br/&gt;
- Model the &amp;quot;try it out&amp;quot; after .net at develop/net/next to introduce JSON&lt;br/&gt;
&lt;br/&gt;
3. note API methods signatures put by MC&lt;br/&gt;
&lt;br/&gt;
&lt;br/&gt;
**(Item still outstanding - Beer App in PHP should be available as of week of 12/10)&lt;br/&gt;
4. Tutorial: Priority 3. Issue is webchat &lt;br/&gt;
-Beer app in .net, ruby, and java&lt;br/&gt;
-Reuse two-phase commit? No.&lt;br/&gt;
-Leave existing Webchat application up for now&lt;br/&gt;
-Matt is talking to Trond about minimal crud and views. Check in with Matt &lt;br/&gt;
&lt;br/&gt;
&lt;br/&gt;
&lt;br/&gt;
&lt;br/&gt;
&lt;br/&gt;
&lt;br/&gt;
&lt;br/&gt;
&lt;br/&gt;
&lt;br/&gt;
</description>
                <environment></environment>
            <key id="21131">PCBC-156</key>
            <summary>PHP GA Content</summary>
                <type id="5" iconUrl="http://www.couchbase.com/issues/images/icons/issuetypes/epic.png">Epic</type>
                                <priority id="3" iconUrl="http://www.couchbase.com/issues/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.couchbase.com/issues/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10011">Public</security>
                        <assignee username="kzeller">Karen Zeller</assignee>
                                <reporter username="kzeller">Karen Zeller</reporter>
                        <labels>
                    </labels>
                <created>Tue, 4 Dec 2012 16:38:04 -0600</created>
                <updated>Thu, 10 Jan 2013 17:42:01 -0600</updated>
                    <resolved>Thu, 10 Jan 2013 17:41:51 -0600</resolved>
                                            <fixVersion>1.1.3</fixVersion>
                                                <votes>0</votes>
                        <watches>0</watches>
                                                    <comments>
                    <comment id="45587" author="kzeller" created="Thu, 6 Dec 2012 13:06:43 -0600"  >After you log in, you&amp;#39;ll have a black bar across the top for some&lt;br/&gt;
administrative kinds of capabilities.  Don&amp;#39;t worry about that too much.&lt;br/&gt;
Mostly, you&amp;#39;ll want to head to:&lt;br/&gt;
&lt;a href=&quot;http://www.couchbase.com/develop/php/next&quot;&gt;http://www.couchbase.com/develop/php/next&lt;/a&gt;&lt;br/&gt;
&lt;br/&gt;
When you&amp;#39;re there, you&amp;#39;ll be able to edit the page. Go here: &lt;a href=&quot;http://www.couchbase.com/user&quot;&gt;http://www.couchbase.com/user&lt;/a&gt;&lt;br/&gt;
&lt;br/&gt;
IMPORTANT!!  Make sure any edits are done as a revision.  We always have&lt;br/&gt;
review before publishing.  In this case, we can probably publish straight&lt;br/&gt;
away, but you&amp;#39;ll still want review.&lt;br/&gt;
&lt;br/&gt;
Notes: &lt;br/&gt;
modeled after the ruby page for steps 0 &amp;amp; 1 since the steps are similar&lt;br/&gt;
modeled after the .NET page for step 2 where it covers bootstrapping,&lt;br/&gt;
basic CRUD, introduces JSON and using JSON, then introduces views&lt;br/&gt;
&lt;br/&gt;
&lt;br/&gt;
****Add info about removing old C library before you get new one....)</comment>
                    <comment id="47570" author="kzeller" created="Thu, 10 Jan 2013 17:41:51 -0600"  >completed end of december</comment>
                    <comment id="47571" author="kzeller" created="Thu, 10 Jan 2013 17:42:01 -0600"  >completed end of december</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                                                                                        <customfield id="customfield_10084" key="com.pyxis.greenhopper.jira:gh-epic-status">
                <customfieldname>Epic Status</customfieldname>
                <customfieldvalues>
                        <customfieldvalue key="10052"><![CDATA[Done]]></customfieldvalue>

                </customfieldvalues>
            </customfield>
                                                                                                                                                <customfield id="customfield_10081" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Rank</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>9760</customfieldvalue>
                </customfieldvalues>
            </customfield>
                                                                                    <customfield id="customfield_10181" key="com.atlassian.jira.ext.charting:timeinstatus">
                <customfieldname>Time In Status</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                </customfields>
    </item>

<item>
            <title>[PCBC-146] Create a windows php-5.3.17-Win32-VC9-x86 thread-safe build of the current 1.1 tree</title>
                <link>http://www.couchbase.com/issues/browse/PCBC-146</link>
                <project id="10049" key="PCBC">Couchbase PHP client library</project>
                        <description>Please create what&amp;#39;s in the summary line, and simply attach it here.</description>
                <environment></environment>
            <key id="20700">PCBC-146</key>
            <summary>Create a windows php-5.3.17-Win32-VC9-x86 thread-safe build of the current 1.1 tree</summary>
                <type id="3" iconUrl="http://www.couchbase.com/issues/images/icons/issuetypes/task.png">Task</type>
                                <priority id="2" iconUrl="http://www.couchbase.com/issues/images/icons/priorities/critical.png">Critical</priority>
                    <status id="6" iconUrl="http://www.couchbase.com/issues/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="2">Won&apos;t Fix</resolution>
                    <security id="10011">Public</security>
                        <assignee username="mnunberg">Mark Nunberg</assignee>
                                <reporter username="ingenthr">Matt Ingenthron</reporter>
                        <labels>
                    </labels>
                <created>Mon, 12 Nov 2012 16:35:07 -0600</created>
                <updated>Tue, 2 Apr 2013 02:47:19 -0500</updated>
                    <resolved>Tue, 2 Apr 2013 02:47:19 -0500</resolved>
                                            <fixVersion>1.1.3</fixVersion>
                                                <votes>0</votes>
                        <watches>2</watches>
                                                    <comments>
                    <comment id="43864" author="ingenthr" created="Mon, 12 Nov 2012 19:58:59 -0600"  >Please</comment>
                    <comment id="43865" author="ingenthr" created="Mon, 12 Nov 2012 19:59:48 -0600"  >Whoops.  Premature enter key.&lt;br/&gt;
&lt;br/&gt;
Richard: please let us know how this binary works out for you.  Thanks!</comment>
                    <comment id="43887" author="RiskE" created="Tue, 13 Nov 2012 08:47:12 -0600"  >Thanks. I am now up and running.&lt;br/&gt;
&lt;br/&gt;
PHP Version =&amp;gt; 5.3.17&lt;br/&gt;
Compiler =&amp;gt; MSVC9 (Visual C++ 2008)&lt;br/&gt;
Thread Safety =&amp;gt; enabled&lt;br/&gt;
Host =&amp;gt; i386-pc-win32&lt;br/&gt;
&lt;br/&gt;
couchbase support =&amp;gt; enabled&lt;br/&gt;
couchbase.compression_factor =&amp;gt; 1.3 =&amp;gt; 1.3&lt;br/&gt;
couchbase.compression_threshold =&amp;gt; 2000 =&amp;gt; 2000&lt;br/&gt;
couchbase.compressor =&amp;gt; none =&amp;gt; none&lt;br/&gt;
couchbase.durability_default_poll_interval =&amp;gt; 100000 =&amp;gt; 100000&lt;br/&gt;
couchbase.durability_default_timeout =&amp;gt; 4000000 =&amp;gt; 4000000&lt;br/&gt;
couchbase.serializer =&amp;gt; php =&amp;gt; php</comment>
                    <comment id="43923" author="mnunberg" created="Tue, 13 Nov 2012 14:51:35 -0600"  >reopening to upload modified binary</comment>
                    <comment id="43953" author="trond" created="Wed, 14 Nov 2012 02:54:19 -0600"  >Mark: could you post information about:&lt;br/&gt;
1. the php source code used&lt;br/&gt;
2. the configure options&lt;br/&gt;
&lt;br/&gt;
THat&amp;#39;ll make it easier to reproduce the setup</comment>
                    <comment id="43954" author="mnunberg" created="Wed, 14 Nov 2012 03:22:19 -0600"  >&lt;a href=&quot;http://windows.php.net/downloads/releases/php-5.3.18-src.zip&quot;&gt;http://windows.php.net/downloads/releases/php-5.3.18-src.zip&lt;/a&gt;&lt;br/&gt;
&lt;br/&gt;
configure options: --disable-all --enable-cli --with-couchbase=shared --with-json (or is it --enable-json).&lt;br/&gt;
&lt;br/&gt;
I needed to modify the php couchbase source to compile json (changeset pending) on win32; as the normal header/config checking did not do the trick.</comment>
                    <comment id="53988" author="trond" created="Tue, 2 Apr 2013 02:47:19 -0500"  >This is obsolete (and a duplicate of the one we&amp;#39;ve got to support windows)</comment>
                </comments>
                    <attachments>
                    <attachment id="15799" name="php-ext-couchbase-5.3.18-vc9-x86.zip" size="77711" author="mnunberg" created="Tue, 13 Nov 2012 14:51:53 -0600" />
                    <attachment id="15783" name="php-ext-couchbase-5.3.18-win32-vc9-x86.zip" size="77694" author="mnunberg" created="Mon, 12 Nov 2012 17:45:15 -0600" />
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                                                                                                                                                    <customfield id="customfield_10081" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Rank</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>9768</customfieldvalue>
                </customfieldvalues>
            </customfield>
                                                                                    <customfield id="customfield_10181" key="com.atlassian.jira.ext.charting:timeinstatus">
                <customfieldname>Time In Status</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                </customfields>
    </item>

<item>
            <title>[PCBC-133] connection options needs updating in 1.1 docs</title>
                <link>http://www.couchbase.com/issues/browse/PCBC-133</link>
                <project id="10049" key="PCBC">Couchbase PHP client library</project>
                        <description>For 1.0.5, we updated the connection options about redundant connections.  We need to bring those changes over to the 1.1. documentation as well.</description>
                <environment></environment>
            <key id="20126">PCBC-133</key>
            <summary>connection options needs updating in 1.1 docs</summary>
                <type id="1" iconUrl="http://www.couchbase.com/issues/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="2" iconUrl="http://www.couchbase.com/issues/images/icons/priorities/critical.png">Critical</priority>
                    <status id="5" iconUrl="http://www.couchbase.com/issues/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10011">Public</security>
                        <assignee username="mccouch">MC Brown</assignee>
                                <reporter username="ingenthr">Matt Ingenthron</reporter>
                        <labels>
                    </labels>
                <created>Mon, 8 Oct 2012 13:52:33 -0500</created>
                <updated>Mon, 18 Feb 2013 10:46:20 -0600</updated>
                    <resolved>Mon, 18 Feb 2013 10:46:20 -0600</resolved>
                            <version>1.1.0-dp4</version>
                                <fixVersion>1.1.3</fixVersion>
                                                <votes>0</votes>
                        <watches>3</watches>
                                                    <comments>
                    <comment id="40655" author="ingenthr" created="Mon, 8 Oct 2012 14:01:56 -0500"  >Also, note the API docs says the API call to new Couchbase() is : new Couchbase($url, $username, $password [, $persistent ]) .... but it&amp;#39;s actually, $url, $username,$password, $bucket, $persisten..&lt;br/&gt;
&lt;br/&gt;
See: &lt;a href=&quot;http://www.couchbase.com/docs/couchbase-sdk-php-1.1/api-reference-connection.html&quot;&gt;http://www.couchbase.com/docs/couchbase-sdk-php-1.1/api-reference-connection.html&lt;/a&gt;</comment>
                    <comment id="50553" author="kzeller" created="Fri, 15 Feb 2013 12:05:06 -0600"  >MC is handling updates to the C library as well as PHP library in metadocs.</comment>
                    <comment id="50673" author="mccouch" created="Mon, 18 Feb 2013 10:46:20 -0600"  >I&amp;#39;ve updated the API reference, narrative, and default options to show the correct values and connection options. I&amp;#39;ve also added the information on redundant connections and examples</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                                                                                                                                                    <customfield id="customfield_10081" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Rank</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>8845</customfieldvalue>
                </customfieldvalues>
            </customfield>
                                                                                    <customfield id="customfield_10181" key="com.atlassian.jira.ext.charting:timeinstatus">
                <customfieldname>Time In Status</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                </customfields>
    </item>

<item>
            <title>[PCBC-130] Remove mention of pecl-memcache and pecl-memcached from http://www.couchbase.com/develop</title>
                <link>http://www.couchbase.com/issues/browse/PCBC-130</link>
                <project id="10049" key="PCBC">Couchbase PHP client library</project>
                        <description>Is this docs or client library?&lt;br/&gt;
&lt;br/&gt;
Anyway, a customer somehow missed the big &amp;quot;PHP 1.0&amp;quot; link at the top of the page and thought that he had to use pecl-memcache*.  let&amp;#39;s remove those now that we have native PHP support.</description>
                <environment></environment>
            <key id="17803">PCBC-130</key>
            <summary>Remove mention of pecl-memcache and pecl-memcached from http://www.couchbase.com/develop</summary>
                <type id="1" iconUrl="http://www.couchbase.com/issues/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.couchbase.com/issues/images/icons/priorities/major.png">Major</priority>
                    <status id="5" iconUrl="http://www.couchbase.com/issues/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10011">Public</security>
                        <assignee username="ingenthr">Matt Ingenthron</assignee>
                                <reporter username="perry">Perry Krug</reporter>
                        <labels>
                        <label>customer</label>
                    </labels>
                <created>Thu, 14 Jun 2012 11:11:25 -0500</created>
                <updated>Tue, 16 Apr 2013 11:21:00 -0500</updated>
                    <resolved>Tue, 16 Apr 2013 11:21:00 -0500</resolved>
                            <version>1.1.0</version>
                                <fixVersion>1.1.3</fixVersion>
                                <component>docs</component>
                                <votes>0</votes>
                        <watches>1</watches>
                                                    <comments>
                    <comment id="41363" author="ingenthr" created="Mon, 15 Oct 2012 10:35:07 -0500"  >The reason I did that is I wanted to communicate that we&amp;#39;re compatible there, since pecl-memcache (not so much memcached, since we&amp;#39;re compatible there) is so popular.  &lt;br/&gt;
&lt;br/&gt;
I think I&amp;#39;d rather leave it, but make it more clear some other way.  Do you think an additional sentence or two would do it?</comment>
                    <comment id="55166" author="ingenthr" created="Tue, 16 Apr 2013 11:21:00 -0500"  >With recent website changes, it got worse so I just removed them.  Also, we&amp;#39;re now in PECL, with plans to fully be in PECL soon.</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                                                                                                                                                    <customfield id="customfield_10081" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Rank</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>9780</customfieldvalue>
                </customfieldvalues>
            </customfield>
                                                                                    <customfield id="customfield_10181" key="com.atlassian.jira.ext.charting:timeinstatus">
                <customfieldname>Time In Status</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                </customfields>
    </item>

<item>
            <title>[PCBC-126] Tests: Make view helper script in PHP</title>
                <link>http://www.couchbase.com/issues/browse/PCBC-126</link>
                <project id="10049" key="PCBC">Couchbase PHP client library</project>
                        <description>It currently uses a short perl script to create the view and design doc. This should be done in PHP if possible</description>
                <environment></environment>
            <key id="19978">PCBC-126</key>
            <summary>Tests: Make view helper script in PHP</summary>
                <type id="3" iconUrl="http://www.couchbase.com/issues/images/icons/issuetypes/task.png">Task</type>
                                <priority id="4" iconUrl="http://www.couchbase.com/issues/images/icons/priorities/minor.png">Minor</priority>
                    <status id="5" iconUrl="http://www.couchbase.com/issues/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="6">Done</resolution>
                    <security id="10011">Public</security>
                        <assignee username="mnunberg">Mark Nunberg</assignee>
                                <reporter username="mnunberg">Mark Nunberg</reporter>
                        <labels>
                    </labels>
                <created>Fri, 28 Sep 2012 15:19:58 -0500</created>
                <updated>Tue, 12 Mar 2013 14:53:58 -0500</updated>
                    <resolved>Tue, 12 Mar 2013 14:53:58 -0500</resolved>
                            <version>1.1.0-dp5</version>
                <version>1.1.0</version>
                                <fixVersion>1.1.3</fixVersion>
                                <component>library</component>
                                <votes>0</votes>
                        <watches>1</watches>
                                                    <comments>
                    <comment id="52561" author="mnunberg" created="Tue, 12 Mar 2013 14:53:58 -0500"  >I believe this has already been completed by trond.</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                                                                                                                                                    <customfield id="customfield_10081" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Rank</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>9313</customfieldvalue>
                </customfieldvalues>
            </customfield>
                                                                                    <customfield id="customfield_10181" key="com.atlassian.jira.ext.charting:timeinstatus">
                <customfieldname>Time In Status</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                </customfields>
    </item>

<item>
            <title>[PCBC-125] Tests: require get validation to also ensure CAS is expected value</title>
                <link>http://www.couchbase.com/issues/browse/PCBC-125</link>
                <project id="10049" key="PCBC">Couchbase PHP client library</project>
                        <description></description>
                <environment></environment>
            <key id="19977">PCBC-125</key>
            <summary>Tests: require get validation to also ensure CAS is expected value</summary>
                <type id="3" iconUrl="http://www.couchbase.com/issues/images/icons/issuetypes/task.png">Task</type>
                                <priority id="3" iconUrl="http://www.couchbase.com/issues/images/icons/priorities/major.png">Major</priority>
                    <status id="1" iconUrl="http://www.couchbase.com/issues/images/icons/statuses/open.png">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                    <security id="10011">Public</security>
                        <assignee username="trond">Trond Norbye</assignee>
                                <reporter username="mnunberg">Mark Nunberg</reporter>
                        <labels>
                    </labels>
                <created>Fri, 28 Sep 2012 15:16:22 -0500</created>
                <updated>Sat, 11 May 2013 13:30:45 -0500</updated>
                                                    <fixVersion>1.1.3</fixVersion>
                                <component>library</component>
                                <votes>0</votes>
                        <watches>0</watches>
                                                            <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                                                                                                                                                    <customfield id="customfield_10081" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Rank</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>9784</customfieldvalue>
                </customfieldvalues>
            </customfield>
                                                                                                            </customfields>
    </item>

<item>
            <title>[PCBC-105] Update the docs to show all PHP methods options</title>
                <link>http://www.couchbase.com/issues/browse/PCBC-105</link>
                <project id="10049" key="PCBC">Couchbase PHP client library</project>
                        <description>&lt;a href=&quot;http://www.couchbase.com/docs/couchbase-sdk-php-1.0/api-reference-update.html#table-couchbase-sdk_php_increment&quot;&gt;http://www.couchbase.com/docs/couchbase-sdk-php-1.0/api-reference-update.html#table-couchbase-sdk_php_increment&lt;/a&gt;&lt;br/&gt;
&lt;br/&gt;
&lt;br/&gt;
Here is the output of &amp;#39;grep proto couchbase.c&amp;#39; on both branches: &lt;a href=&quot;https://gist.github.com/26f376a604ad62fe2d89&quot;&gt;https://gist.github.com/26f376a604ad62fe2d89&lt;/a&gt;&lt;br/&gt;
</description>
                <environment></environment>
            <key id="19360">PCBC-105</key>
            <summary>Update the docs to show all PHP methods options</summary>
                <type id="1" iconUrl="http://www.couchbase.com/issues/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="2" iconUrl="http://www.couchbase.com/issues/images/icons/priorities/critical.png">Critical</priority>
                    <status id="5" iconUrl="http://www.couchbase.com/issues/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10011">Public</security>
                        <assignee username="mccouch">MC Brown</assignee>
                                <reporter username="avsej">Sergey Avseyev</reporter>
                        <labels>
                    </labels>
                <created>Mon, 27 Aug 2012 04:23:39 -0500</created>
                <updated>Wed, 30 Jan 2013 07:50:13 -0600</updated>
                    <resolved>Wed, 30 Jan 2013 07:50:13 -0600</resolved>
                            <version>1.0.5</version>
                <version>1.1.0-dp2</version>
                                <fixVersion>1.1.3</fixVersion>
                                <component>docs</component>
                                <votes>0</votes>
                        <watches>0</watches>
                                                    <comments>
                    <comment id="43841" author="ingenthr" created="Mon, 12 Nov 2012 16:03:17 -0600"  >MC: Can you help Karen get what she needs to be able to get this in place this week?  Thanks!</comment>
                    <comment id="48998" author="mccouch" created="Wed, 30 Jan 2013 07:50:13 -0600"  >All of the PHP options have now been added to the documentation, and their information and detail expanded to cover supplied values, returned values, errors and exceptions. </comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                                                                                                                                                    <customfield id="customfield_10081" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Rank</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>9803</customfieldvalue>
                </customfieldvalues>
            </customfield>
                                                                                    <customfield id="customfield_10181" key="com.atlassian.jira.ext.charting:timeinstatus">
                <customfieldname>Time In Status</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                </customfields>
    </item>

<item>
            <title>[PCBC-102] Provide Consistent Order of Parameters</title>
                <link>http://www.couchbase.com/issues/browse/PCBC-102</link>
                <project id="10049" key="PCBC">Couchbase PHP client library</project>
                        <description>Provide consistent, predictable order for method parameters as other SDKS.</description>
                <environment></environment>
            <key id="19336">PCBC-102</key>
            <summary>Provide Consistent Order of Parameters</summary>
                <type id="4" iconUrl="http://www.couchbase.com/issues/images/icons/issuetypes/improvement.png">Improvement</type>
                                <priority id="4" iconUrl="http://www.couchbase.com/issues/images/icons/priorities/minor.png">Minor</priority>
                    <status id="1" iconUrl="http://www.couchbase.com/issues/images/icons/statuses/open.png">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                    <security id="10011">Public</security>
                        <assignee username="ingenthr">Matt Ingenthron</assignee>
                                <reporter username="kzeller">Karen Zeller</reporter>
                        <labels>
                    </labels>
                <created>Fri, 24 Aug 2012 16:41:57 -0500</created>
                <updated>Sun, 16 Dec 2012 11:11:34 -0600</updated>
                                                    <fixVersion>1.1.3</fixVersion>
                                                <votes>0</votes>
                        <watches>0</watches>
                                                            <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                                                                                                                                                    <customfield id="customfield_10081" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Rank</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>9310</customfieldvalue>
                </customfieldvalues>
            </customfield>
                                                                                                            </customfields>
    </item>

<item>
            <title>[PCBC-101] Provide Standardized Logging</title>
                <link>http://www.couchbase.com/issues/browse/PCBC-101</link>
                <project id="10049" key="PCBC">Couchbase PHP client library</project>
                        <description>Provides the consistent level of logging provided by other SDKs. Provide more information on configuring logging for developers.</description>
                <environment></environment>
            <key id="19333">PCBC-101</key>
            <summary>Provide Standardized Logging</summary>
                <type id="4" iconUrl="http://www.couchbase.com/issues/images/icons/issuetypes/improvement.png">Improvement</type>
                                <priority id="4" iconUrl="http://www.couchbase.com/issues/images/icons/priorities/minor.png">Minor</priority>
                    <status id="1" iconUrl="http://www.couchbase.com/issues/images/icons/statuses/open.png">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                    <security id="10011">Public</security>
                        <assignee username="ingenthr">Matt Ingenthron</assignee>
                                <reporter username="kzeller">Karen Zeller</reporter>
                        <labels>
                    </labels>
                <created>Fri, 24 Aug 2012 16:38:56 -0500</created>
                <updated>Sun, 16 Dec 2012 11:11:35 -0600</updated>
                                                    <fixVersion>1.1.3</fixVersion>
                                                <votes>0</votes>
                        <watches>0</watches>
                                                            <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                                                                                                                                                    <customfield id="customfield_10081" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Rank</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>9312</customfieldvalue>
                </customfieldvalues>
            </customfield>
                                                                                                            </customfields>
    </item>

<item>
            <title>[PCBC-96] Create compatibility layer for flags in PHP</title>
                <link>http://www.couchbase.com/issues/browse/PCBC-96</link>
                <project id="10049" key="PCBC">Couchbase PHP client library</project>
                        <description>In &lt;a href=&quot;http://www.couchbase.com/issues/browse/PCBC-78&quot; title=&quot;PHP value compression incompatible with Java/.NET&quot;&gt;&lt;strike&gt;PCBC-78&lt;/strike&gt;&lt;/a&gt;, we&amp;#39;d added a simple workaround to working with JSON from multiple languages.  We need a more elegant approach though, and that&amp;#39;d need to consider standardizing flags or some other approach.  This issue will track that need.</description>
                <environment></environment>
            <key id="18971">PCBC-96</key>
            <summary>Create compatibility layer for flags in PHP</summary>
                <type id="2" iconUrl="http://www.couchbase.com/issues/images/icons/issuetypes/newfeature.png">New Feature</type>
                                <priority id="4" iconUrl="http://www.couchbase.com/issues/images/icons/priorities/minor.png">Minor</priority>
                    <status id="1" iconUrl="http://www.couchbase.com/issues/images/icons/statuses/open.png">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                    <security id="10011">Public</security>
                        <assignee username="ingenthr">Matt Ingenthron</assignee>
                                <reporter username="ingenthr">Matt Ingenthron</reporter>
                        <labels>
                    </labels>
                <created>Fri, 10 Aug 2012 20:39:57 -0500</created>
                <updated>Sun, 16 Dec 2012 11:11:37 -0600</updated>
                                    <version>1.1.0</version>
                                <fixVersion>1.1.3</fixVersion>
                                                <votes>0</votes>
                        <watches>0</watches>
                                                            <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                                                                                                                                                    <customfield id="customfield_10081" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Rank</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>9307</customfieldvalue>
                </customfieldvalues>
            </customfield>
                                                                                                            </customfields>
    </item>

<item>
            <title>[PCBC-84] Add experimental replica read command </title>
                <link>http://www.couchbase.com/issues/browse/PCBC-84</link>
                <project id="10049" key="PCBC">Couchbase PHP client library</project>
                        <description>Implement a simple replica read command</description>
                <environment></environment>
            <key id="18351">PCBC-84</key>
            <summary>Add experimental replica read command </summary>
                <type id="4" iconUrl="http://www.couchbase.com/issues/images/icons/issuetypes/improvement.png">Improvement</type>
                                <priority id="4" iconUrl="http://www.couchbase.com/issues/images/icons/priorities/minor.png">Minor</priority>
                    <status id="5" iconUrl="http://www.couchbase.com/issues/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10011">Public</security>
                        <assignee username="trond">Trond Norbye</assignee>
                                <reporter username="ingenthr">Matt Ingenthron</reporter>
                        <labels>
                    </labels>
                <created>Thu, 12 Jul 2012 00:39:56 -0500</created>
                <updated>Tue, 2 Apr 2013 02:44:19 -0500</updated>
                    <resolved>Tue, 2 Apr 2013 02:44:19 -0500</resolved>
                                            <fixVersion>1.1.3</fixVersion>
                                                <votes>0</votes>
                        <watches>0</watches>
                                                    <comments>
                    <comment id="39253" author="ingenthr" created="Tue, 18 Sep 2012 10:55:10 -0500"  >This is not a required feature for 1.1, but it would be nice to have.</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                                                                                                                                                    <customfield id="customfield_10081" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Rank</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>9297</customfieldvalue>
                </customfieldvalues>
            </customfield>
                                                                                    <customfield id="customfield_10181" key="com.atlassian.jira.ext.charting:timeinstatus">
                <customfieldname>Time In Status</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                </customfields>
    </item>

<item>
            <title>[PCBC-24] deploying to download locations directly from CI</title>
                <link>http://www.couchbase.com/issues/browse/PCBC-24</link>
                <project id="10049" key="PCBC">Couchbase PHP client library</project>
                        <description>The idea here is that non-releases should automatically upload deploy to one location, and releases should automatically deploy to a different location.</description>
                <environment></environment>
            <key id="15835">PCBC-24</key>
            <summary>deploying to download locations directly from CI</summary>
                <type id="3" iconUrl="http://www.couchbase.com/issues/images/icons/issuetypes/task.png">Task</type>
                                <priority id="4" iconUrl="http://www.couchbase.com/issues/images/icons/priorities/minor.png">Minor</priority>
                    <status id="1" iconUrl="http://www.couchbase.com/issues/images/icons/statuses/open.png">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                    <security id="10011">Public</security>
                        <assignee username="ingenthr">Matt Ingenthron</assignee>
                                <reporter username="ingenthr">Matt Ingenthron</reporter>
                        <labels>
                    </labels>
                <created>Thu, 12 Jan 2012 01:24:43 -0600</created>
                <updated>Sun, 16 Dec 2012 11:11:37 -0600</updated>
                                                    <fixVersion>1.1.3</fixVersion>
                                                <votes>0</votes>
                        <watches>0</watches>
                                                            <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                                                                                                                                                    <customfield id="customfield_10081" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Rank</customfieldname>
                <customfieldvalues>
                    <customfieldvalue>9309</customfieldvalue>
                </customfieldvalues>
            </customfield>
                                                                                                            </customfields>
    </item>
</channel>
</rss>