Ejemplo n.º 1
0
        public void SelectProfile_ReturnsAllUsers()
        {
            var qdict = new QueryableReliableIndexedDictionary <UserName, Basic.Common.UserProfile, Basic.Common.UserProfile>(indexed_users, userDictionaryManager);
            var query = qdict.Select(x => x);

            ISet <Basic.Common.UserProfile> profiles = new SortedSet <Basic.Common.UserProfile>();

            // Execute the queries, add breakpoints here to see results
            foreach (Basic.Common.UserProfile profile in query)
            {
                profiles.Add(profile);
            }

            Assert.IsTrue(profiles.Contains(user0));
            Assert.IsTrue(profiles.Contains(user1));
            Assert.IsTrue(profiles.Contains(user2));
            Assert.IsTrue(profiles.Contains(user3));
            Assert.IsTrue(profiles.Contains(user4));
        }
Ejemplo n.º 2
0
        public void SelectProfileEmails_ReturnsAllUsersEmails()
        {
            var qdict = new QueryableReliableIndexedDictionary <UserName, Basic.Common.UserProfile, Basic.Common.UserProfile>(indexed_users, userDictionaryManager);

            var query = qdict.Select(x => x.Email);

            ISet <string> emails = new SortedSet <string>();

            // Execute the queries, add breakpoints here to see results
            foreach (var email in query)
            {
                emails.Add(email);
            }

            Assert.IsTrue(emails.Contains("*****@*****.**"));
            Assert.IsTrue(emails.Contains("*****@*****.**"));
            Assert.IsTrue(emails.Contains("*****@*****.**"));
            Assert.IsTrue(emails.Contains("*****@*****.**"));
            Assert.IsTrue(emails.Contains("*****@*****.**"));
        }
Ejemplo n.º 3
0
        public void WhereProfileEmailGreaterThan_ReturnsUser3_4()
        {
            var qdict = new QueryableReliableIndexedDictionary <UserName, Basic.Common.UserProfile, Basic.Common.UserProfile>(indexed_users, userDictionaryManager);

            var query = qdict.Where(x => x.Email.CompareTo("*****@*****.**") >= 0);

            ISet <Basic.Common.UserProfile> profiles = new SortedSet <Basic.Common.UserProfile>();

            // Execute the queries, add breakpoints here to see results
            foreach (Basic.Common.UserProfile profile in query)
            {
                profiles.Add(profile);
            }

            Assert.IsFalse(profiles.Contains(user0));
            Assert.IsFalse(profiles.Contains(user1));
            Assert.IsTrue(profiles.Contains(user2));
            Assert.IsTrue(profiles.Contains(user3));
            Assert.IsTrue(profiles.Contains(user4));
        }
Ejemplo n.º 4
0
        public void WhereProfileEmailEquals_ReturnsUser1()
        {
            var qdict = new QueryableReliableIndexedDictionary <UserName, Basic.Common.UserProfile, Basic.Common.UserProfile>(indexed_users, userDictionaryManager);

            var query = from Basic.Common.UserProfile profile in qdict
                        where profile.Email == "*****@*****.**"
                        select profile;

            ISet <Basic.Common.UserProfile> profiles = new SortedSet <Basic.Common.UserProfile>();

            // Execute the queries, add breakpoints here to see results
            foreach (Basic.Common.UserProfile profile in query)
            {
                profiles.Add(profile);
            }

            Assert.IsFalse(profiles.Contains(user0));
            Assert.IsTrue(profiles.Contains(user1));
            Assert.IsFalse(profiles.Contains(user2));
            Assert.IsFalse(profiles.Contains(user3));
            Assert.IsFalse(profiles.Contains(user4));
        }
Ejemplo n.º 5
0
        protected override async Task RunAsync(CancellationToken cancellationToken)
        {
            // Make a traditional IReliableDictionary <UserName, UserProfile>
            var users = await StateManager.GetOrAddAsync <IReliableDictionary <UserName, UserProfile> >("users");

            // Make an IReliableIndexedDictionary <UserName, UserProfile>, with two indices:
            // Index<UserProfile.Email, UserName[]> and Index<UserProfile.Age, UserName[]>
            var indexed_users = await StateManager.GetOrAddIndexedAsync <UserName, UserProfile>("indexed_users",
                                                                                                FilterableIndex <UserName, UserProfile, string> .CreateQueryableInstance("Email"),
                                                                                                FilterableIndex <UserName, UserProfile, int> .CreateQueryableInstance("Age"));

            // The above dictionaries have the same content (below), but because the second has indices,
            // Linq queries and external queries should use that and be faster.

            for (int i = 0; i < 100; i++)
            {
                using (var tx = StateManager.CreateTransaction())
                {
                    var user = new UserProfile
                    {
                        Name = new UserName
                        {
                            First = $"First{i}",
                            Last  = $"Last{i}",
                        },
                        Email   = $"user-{i}@example.com",
                        Age     = 20 + i / 3,
                        Address = new Address
                        {
                            AddressLine1 = $"1{i} Main St.",
                            City         = "Seattle",
                            State        = "WA",
                            Zipcode      = 98117,
                        },
                    };

                    await users.SetAsync(tx, user.Name, user, TimeSpan.FromSeconds(4), cancellationToken);

                    await indexed_users.SetAsync(tx, user.Name, user, TimeSpan.FromSeconds(4), cancellationToken);

                    await tx.CommitAsync();
                }
            }

            /* Example of LINQ querying on IReliableIndexedDictionary
             *
             * Sometimes you will want your application code to carry out queries against your RC as well, and LINQ is a great way to do so
             *
             * Also, when you write your query, make sure to put all your WHERE logic into a single WHERE statement
             * since each statement carries its own context the indexing middleware cannot efficiently operate on disjoint statements,
             * e.g. use  qdict.Where(x => x.Email == "*****@*****.**" && x.Age <= 20) instead of
             *           qdict.Where(x => x.Email == "*****@*****.**").Where(x => x.Age <= 20)
             */


            // Create LINQ-Queryable state of IndexedDictionary
            var qdict = new QueryableReliableIndexedDictionary <UserName, UserProfile, UserProfile>(indexed_users, StateManager);

            // Create the same query two different ways
            var query = from UserProfile profile in qdict
                        where profile.Age >= 20 && profile.Email == "*****@*****.**" && profile.Age <= 20
                        select profile;

            var query2 = qdict.Where(x => x.Email == "*****@*****.**" && x.Age <= 20);

            // Execute the queries, add breakpoints here to see results
            foreach (UserProfile profile in query)
            {
            }
            foreach (UserProfile profile in query2)
            {
            }
        }