Tagged Questions
The multi-index tag has no wiki summary.
7
votes
3answers
512 views
how boost multiindex is implemented
I have some difficulties understanding how boost multiindex is implemented.
Lets say I have the following :
typedef multi_index_container<
employee,
indexed_by<
...
6
votes
3answers
461 views
Is there an equivalent of boost::multi_index for Java someplace?
I stumbled upon multi_index on a lark last night while pounding my had against a collection that I need to access by 3 different key values, and also to have rebalancing array semantics. Well I got ...
5
votes
1answer
284 views
What's the point of boost::multi_index_container::index<Tag>::type?
If you have a boost::multi_index_container< > with multiple indices, there are obviously multiple ways to iterate over it - each index defines a way. For instance, if you have an index with tag ...
4
votes
2answers
465 views
Get numeric index from Boost multi-index iterator
I'm storing a bunch of the following
struct Article {
std::string title;
unsigned db_id; // id field in MediaWiki database dump
};
in a Boost.MultiIndex container, defined as
typedef ...
3
votes
2answers
135 views
How to move an element without removing and re-inserting it into a boost::multi_index_container?
I'm using a boost::multi_index_container to provide a random access and a hash-based access to a collection of elements. I wanted to change the random access index of an element, without changing the ...
3
votes
1answer
353 views
Need to speed up C++ code involving Boost multi-index and lookups to unordered_multimap
I'm looking for strategies to speed up an agent-based model that's based on objects of class Host, pointers to which are stored in a Boost multi-index container. I've used Shark to determine that the ...
3
votes
2answers
238 views
Multi-index container for ruby
Is there anything like boost::multi_index but for ruby. Basically taking some
container of objects and having it indexed N different ways with N different query methods.
I guess you could use ...
3
votes
2answers
2k views
a C++ hash map that preserves the order of insertion
I have the following code:
#include <iostream>
#include "boost/unordered_map.hpp"
using namespace std;
using namespace boost;
int main()
{
typedef unordered_map<int, int> Map;
...
3
votes
3answers
641 views
Boost multi-index container with index based on nested values
If I have an object like this:
struct Bar {
std::string const& property();
};
I can create a multi-index container for it like this:
struct tag_prop {};
typedef ...
2
votes
1answer
131 views
Multimap and shared_ptr
I want to sort my objects in boost::multi_map refer to some index. But I'm storing not pure objects, but wrapped into boost::shared_ptr. Here is the code:
typedef ...
2
votes
1answer
176 views
Are boost multi_index extracted keys cached?
I am using boost::multi_index with a data type I'd like to index based on its size. However, the size() member function of this data type is expensive to execute. Does multi_index cache the values it ...
2
votes
2answers
269 views
Boost Multi_Index Question
Sorry I can't be more specific in the title.
Let's say I have a class Foo
class Foo {
public:
Foo() { m_bitset.reset(); }
void set_i(int i) {
m_bitset.set(1);
m_i = i;
}
...
2
votes
1answer
256 views
C++ Boost multi-index type identification
In boost multi-index, can i verify whether a particular index type is ordered/not through meta programming?
There are the ordered indexes, hash indexes, sequence indexes etc. Can i find them out ...
2
votes
2answers
372 views
using boost multi_index_container to preserve insertion order
I initially started out using a std::multimap to store many values with the same key, but then I discovered that it doesn't preserve the insertion order among values with the same key. This answer ...
2
votes
1answer
227 views
Boost.MultiIndex: How to make an effective set intersection?
assume that we have a data1 and data2. How can I intersect them with std::set_intersect()?
struct pID
{
int ID;
unsigned int IDf;// postition in the file
pID(int id,const ...
2
votes
2answers
642 views
search for multiple indecies with Boost Multi-Index
how do I limit the search in a boost::multi_index by the result of a previous search?
As an example: suppose I have a rectangle class with an internal value like this:
class MyRect
{
...
1
vote
2answers
112 views
Hashing and access
I want to use hashed storage for my objects. Is this really faster, than std::map<std::string, Object>? I mean searching. As I know, boost process a lot of optimizing.
And I'm not sure my code ...
1
vote
1answer
114 views
boost multi_index partial indexes
I want to implement inside boost multi-index two sets of keys with same search criteria but different eviction criteria. Say i have two sets of data with same search condition, but one set needs a ...
1
vote
1answer
278 views
Multi-Index Insert Failure Return (Boost)
I'm currently using Boost's multi-index to help keep track of how many times a packet passes through a system.
Each time a system touches the packet, its IP address is added to a string, separated ...
1
vote
1answer
256 views
How to write a custom predicate for multi_index_containder with composite_key?
I googled and searched in the boost's man, but didn't find any examples. May be it's a stupid question...anyway.
So we have the famous phonebook from the man:
typedef multi_index_container<
...
1
vote
3answers
634 views
Partial string search in boost::multi_index_container
I have a struct to store info about persons and multi_index_contaider to store such objects. Mult-index uses for search by different criteria.
I've added several persons into container and want to ...
1
vote
2answers
460 views
Template with constant expression: error C2975 with VC++2008
I am trying to use elements of meta programming, but hit the wall with the first trial.
I would like to have a comparator structure which can be used as following:
intersect_by<ID>(L1.data, ...
1
vote
2answers
814 views
boost::multi_index_container with random_access and ordered_unique
I have a problem getting boost::multi_index_container work with random-access and with orderd_unique at the same time. (I'm sorry for the lengthly question, but I think I should use an example..)
...
0
votes
1answer
134 views
How to iterate multi_index
here is my multi_index code:
struct tag_type {};
typedef boost::multi_index_container<ObjectStorage,
bmi::indexed_by<
// Type
...
0
votes
1answer
242 views
boost::multi_index user-defined key extractor and composite key
To avoid a msvc2010 compiler bug, I'm using a user-defined key extrator in a composite_key like that :
enum NodeType
{
TypeOne = 0,
TypeTwo
};
struct TypeExtractor
{
typedef NodeType ...
0
votes
3answers
138 views
Is there a muti index container for the harddisk storage rather than memory?
I need a muti index container based on red-black trees (something like boost::multi_index::multi_index_container) for the case of the harddisk storage. All data must be store on hard disk rather than ...
0
votes
2answers
169 views
Template classes and the friend keyword in c++ (specific example refers to boost::multi_index)
so you have a class employee
class employee {
public:
employee(const string &name, int id) : m_name(name) , m_id(id) {}
const string &getName() const { return m_name; }
int ...
0
votes
2answers
176 views
Boost multi_index ordered_unique Median Value
I would like to quickly retrieve the median value from a boost multi_index container with an ordered_unique index, however the index iterators aren't random access (I don't understand why they can't ...
0
votes
1answer
266 views
multi_index composite_key replace with iterator
Is there anyway to loop through an index in a boost::multi_index and perform a replace?
#include <iostream>
#include <string>
#include <boost/multi_index_container.hpp>
#include ...
0
votes
2answers
639 views
Boost Multi-Index with hashed_unique_index produces compiler error
I learned in THIS THREAD how a hashed_unique<> index can be used with a composite_key using an int and a std::vector<int>. But unfortunately the following code produces quite an error ...
0
votes
2answers
513 views
Boost Multi-Index : Composite key of vector and int for hashed indices
as I've just learned in in my other question, I could use a composite_key for a struct, which has a std::vector and an integer. Now my question is: Can I use this somehow to work with hashed_indecies?
...