Tagged Questions
0
votes
1answer
23 views
PHP - Obtain last row in CouchDB
I am trying to find a method of obtaining the last row in CouchDB using PHP. I have searched around, and I have not found very much that is helpful.
Thanks.
0
votes
1answer
35 views
How do I use a php authentication script as proxy to CouchDB and still maintain full REST API functionality?
I've recently successfully installed CouchDB version 1.2.1 and as a test I can access it using the following Apache rewrite in CentOS 6:
RewriteRule couchdb/(.*)$ http://127.0.0.1:5984/$1 [QSA,P]
I ...
0
votes
2answers
62 views
Scaling a database horizontally using PHP mysql
Problem statement: I am working on a application in which a user can follow other users (like twitter or other e-commerce sites) and get their updates on his wall.It is in relation to a merchant and ...
-2
votes
0answers
25 views
How to proxy requests to CouchDB and also restrict database/docs access? [closed]
CouchDB is installed on my server and listening for the default port on localhost. I verified I have a working instance, but now I'd like to accomplish the following:
Restrict administration to a ...
0
votes
4answers
81 views
Which database fits for 14 million records with PHP as frontend [closed]
I have to work on the business search portal in which, i think the proposed records to be entered and searched would be around 14 million.
I am planing to use PHP as frontend and Mysql as backend. ...
1
vote
1answer
39 views
Increase/Decrease value in phpcassa
Is there any method for simple increase/decrease integer value in cassandra using phpcassa? Maybe it is CounterColumn, but I didn't find anything about how to use it.
Basically, I just want to ...
0
votes
1answer
30 views
Architecture of tracking item changes with saving old values [closed]
Maybe anybody knows the good tutorials or best solutions for tracking/logging not only when the entity was changed/updated, but also the old and new values. Like the following example in the entity ...
0
votes
1answer
42 views
ranking server implementation nosql together with mysql
I'm required to implement an assignment which requires to use mysql with nosql together.
I've already implemented the mysql table. However, I'm not sure about the architecture of nosql.
The server ...
0
votes
1answer
47 views
What's the best way to manage read/unread items (NoSQL/SQL)? [closed]
I'm going to build a Symfony 2.1 application which needs to know the state of items (read/unread), are there any efficient methods to save item states (with many items) ? Using SQL relationnal table ...
1
vote
1answer
32 views
Riak search returns null
I'm trying to work with Riak on PHP. I read the documentation but no luck. So I've already configured the "search" option in /etc/init.d/app.conf as true. So, print_r($results) returns as null array.
...
0
votes
2answers
47 views
Array data format redis pub sub channel
I am trying to publish a normal javascript array on a redis channel through node eg- [1,2,3]. Which i am then capturing through predis by subscribing to the same channel.
However the data always ...
0
votes
1answer
93 views
MongoDB Query to find out all the array elements of a collection
I have a pretty big MongoDB document that holds all kinds of data. I need to identify the fields that are of type array in a collection so I can remove them from the displayed fields in the grid that ...
-2
votes
1answer
68 views
Conditional statements in CQL [closed]
I have tried to use Conditional statements like >, >=, <, <= are not working with with my script. I have added the secondary index for age, which is my field name there.
...
-1
votes
1answer
52 views
mongodb and php transition [closed]
I am using opencart (an opensource framework for e-commerce).
It uses only mysql database as its data source.
However due to the current site traffic, I am sure that we can increase our efficiency ...
0
votes
2answers
60 views
MongoDB and MVC model variables
I'm coming from CodeIgniter/MySQL to Laravel/MongoDB.
For example a User class with different variables by platform:
I website use the variables:
id
name
browser_kind
In mobile app use the ...
4
votes
1answer
195 views
How to do user registration and authentication in PHP with ArangoDB?
ArangoDB is a flexible multi-model database server which has very nice features and lots of good documentation. It's a young, very promising open source project with a growing community but not many ...
1
vote
1answer
101 views
what better place / way to save images with MongoDB / PHP
Good morning people,
I have a question,
I am creating a web application in php that will make use of the MongoDB database ie a nosql database.
This application will work with pretty pictures, like ...
3
votes
2answers
89 views
Fast database as an alternative to PHP array
I have an array containing my reference variables, and in my scripts I need to catch one variable or two. In the current system, I have to include the entire array (and its elements) to use one ...
1
vote
2answers
168 views
Can I specify what fields I want to receive from query when using HandlerSockets?
Can I specify what fields I want to receive from query when using HandlerSockets ?
Here is my sample table
CREATE TABLE pushed_media
(
user_id BINARY(12) NOT NULL,
story_id BINARY(12) NOT ...
0
votes
2answers
49 views
Using RDBMS for Users and Link with NoSQL Itens
I am planning an application and wish to maintain a relational database and other non-relational, respectively, MySQL and MongoDB.
One fact is that in relational database are maintained users, and ...
2
votes
4answers
188 views
php mvc structure with database variables [closed]
I am experimenting on a sort-of MVC structure PHP project.
Suppose I have a model for users, that looks like this: (I am using pseudocode)
function addUser($name, $surname) {
mysql_query("insert ...
1
vote
0answers
101 views
Should I move to a non-RDBMS (NoSQL) DB as a primary DB for a project? [closed]
I am starting on a new project idea of mine and I have been itching to throw in some new technologies to my skill set. One of the things I have been wanting to try more are some of the NoSQL DBs such ...
0
votes
2answers
53 views
Cassandra - Recommended approach to storing user display name on the post (and what happens if display name changes)
I have a website where people can post messages and I store them in this form:
post_id : {user_display_name, title, body}
for example:
234567 : {
user_display_name : "John Doe",
title : ...
-1
votes
1answer
83 views
mongo db group-order
i want to mongodb query this sql query's:
select x,y,message,foo from messege where x=1 and y=1 group by x,y order by _id DESC
but with :
MongoCollection::group
can anyone help me?
1
vote
1answer
56 views
Modeling Privacy Settings in PHP/MySQL or PHP/NoSQL
I'm building a private social network with Yii that will have "comments" all over the site - in Profiles, Events pages, Group Threads, etc. When a user makes a post, they will be able to select the ...
1
vote
1answer
265 views
Document database to store html content
I have been working on a project where user can create simple templates and develop his website pages.He can save them and also put it over the internet once completed.Now my problem 1) When the user ...
2
votes
1answer
58 views
$or-Operator in MongoDB (PHP)
Hey guys I'd like to search for documents by the $or-Operator...
At first I'm inserting 3 documents:
$aDocument = array(
'id' => 1,
'name' => 'WinZIP',
'shorttext' => 'ZIP / ...
0
votes
0answers
48 views
Smarter way to handle presentation slides in a database? [closed]
I have a website which converts PDF files into JPEG and then stores every page inside a table.
Each page will be used for text annotations.
Like this:
(id)*optional | slide_id | belongs_to_PDF | ...
-1
votes
1answer
164 views
MongoDB $where recursion
I want to use recursion in $where expression, but code below does not work. Where am I wrong?
Thanks! )
$code = new MongoCode('
function foo(bar) {
if (bar.catId == 100) {
return true;
} ...
0
votes
2answers
63 views
NoSQL for concurrent reads/writes [closed]
After getting some performance issues for an application using a MySQL database, I'm thinking of using NoSQL solutions.
My architecture is as follows:
One application receives messages from the ...
2
votes
2answers
483 views
What is the best way to check if table exists in DynamoDB?
What is the best way to check if table exists in DynamoDb?
I would appreciate it if the code would be in PHP.
Either active or not.
* Added later as an example to various cases for error code 400
...
1
vote
1answer
427 views
Do PHP mongodb driver check for replica set's master on every request
A typical PHP call to mongodb's replica set
$m1 = new Mongo("mongodb://sf2.example.com,ny1.example.com",
array("replicaSet" => "myReplSet"));
The document said:
// you only need to pass ...
3
votes
2answers
275 views
Most efficient algorithm to retrieve data from database
So I am removing the Joins from my queries as I prepare to move to Cassandra which does not support this, but rather supports many select statements instead. I made a benchmark test on 50 rows of ...
2
votes
2answers
181 views
Using MySQL or NoSQL database [closed]
I'm going to start a large web application, the app will be powered by PHP (YiiFramework), and I wish to build before launching the app a strong and high scalability architecture able to handle huge ...
0
votes
1answer
74 views
Change MongoDB sizeOnDisk when i create a new database
I used PHP to create MongoDB database. My problem is that every time I create a database, the database's "size on disk" is some 200MB. I want to reduce it down to 25-50MB every time.
I have tried to ...
1
vote
1answer
137 views
Solr: Check if a document exists without retrieving the document
I need to find out if a document exists but the documents saved in the Solr server are pretty big so if I do a classic search to retrieve the document with a specified id and the document is returned ...
0
votes
1answer
270 views
Mongo group query - filter results
I'm having an issue in my mongo group query: (this is PHP code)
$conditions = array(
'user' => array(
'$ne' => $uid
)
);
...
1
vote
1answer
384 views
Amazon DynamoDB and relationship many-to-many
I have two tables, and some fields between that tables has many-to-many relationships. How can i implement this feature in Amazon DynamoDB?
0
votes
0answers
197 views
MongoDB (NoSQL) data structure… How?
I'm working with the MongoDB library in PHP to create a NoSQL database based on user statistics. Here's the structure:
(main db):{
(primary db) statistics:{
games:{
{
...
2
votes
2answers
592 views
Mongo DB MapReduce in PHP
First of all it's my first time in Mongo...
Concept:
A user is able to describe an image in natural language.
Divide the user input and store the words he described in a Collection called
words.
...
0
votes
1answer
469 views
Querying for a list of all distinct fields in MongoDB collection
I have a collection where all form data is stored, each form with a different structure, but some forms with overlapping field names. I love mongo for the ease it proves here, allowing me to sort and ...
0
votes
1answer
260 views
How to convert this RDBMS schema to a MongoDB “schema” (and how to query against it)
I am learning how to use MongoDB. It is taking me a while change my mindset from RDBMS/SQL to NoSQL.
Using the following tables and queries as an example, I am hoping that someone can explain how I ...
3
votes
1answer
265 views
Good NoSQL database for Write-Read Intensive Site
Ok I do have a small messaging site for my client. Well its more likely a post-comment system(created in PHP). Now my client want a system that can comment to another existing comment and add some ...
0
votes
1answer
168 views
Mongodb like statement with array
I am trying to save some db action by compiling a looped bit of code with a single query, Before I was simply adding to the the like statements using a loop before firing off the query but i cant get ...
0
votes
0answers
226 views
Symfony Model abstraction (to SQL or NoSQL)
I am starting a new (and first) project with Symfony2, but I didn't choise Database engine yet. And it could be MySQL or NoSQL engines like MongoDB or others, or also it could be changed along the ...
0
votes
3answers
2k views
How to count document elements inside a mongo collection with php?
I have the following structure of a mongo document:
{
"_id": ObjectId("4fba2558a0787e53320027eb"),
"replies": {
"0": {
"email": ObjectId("4fb89a181b3129fe2d000000"),
"sentDate": ...
-1
votes
2answers
108 views
What is the best architecture to use at the back end for a java client based client/server setup?
I'm fairly new to programming and have been focussing a great deal on Java in recent months. I would like to write an application with a Java applet front end which will capture information about my ...
1
vote
1answer
654 views
Redis with multidimensional array in php
I'm trying to use redis with multidimensional array by using HMSET.
My array looks like this.
Array
(
[t] => Hello
[a] => This
[c] => key
[b] => 23
[data] => ...
0
votes
1answer
174 views
MongoDB GridFS Embedding Images (PHP/HTML)
I am using MongoDB and GridFS, but I'd like to be able to include it within an image tag on a page called display, getimage.php being the page that got the image from Mongo, such as <img ...
0
votes
1answer
286 views
Resizing/Specificing Width & Height MongoDB + GridFS + PHP
I am currently developing a script that requires images stored into Mongo with GridFS, although when the files are being retrieved (with a php header) the width="" and height="" HTML is already placed ...

